Skip to content

Commit 6009ba7

Browse files
committed
Run Prettier on frontend files
1 parent bc4f2c7 commit 6009ba7

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

mathesar_ui/src/components/cell-fabric/data-types/components/user/UserFilterInput.svelte

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@
166166
// User cancelled selection
167167
}
168168
}
169-
170169
</script>
171170

172171
<div class="user-filter-input filter-input">

mathesar_ui/src/stores/abstract-types/abstractTypeCategories.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,8 @@ export function getAllowedAbstractTypesForDbTypeAndItsTargetTypes(
368368

369369
const targetDbTypes = typeCastMap[dbType] ?? [];
370370
targetDbTypes.forEach((targetDbType) => {
371-
const abstractTypes = identifyAllPossibleAbstractTypesForDbType(targetDbType);
371+
const abstractTypes =
372+
identifyAllPossibleAbstractTypesForDbType(targetDbType);
372373
[...abstractTypes].forEach((absType) => abstractTypeSet.add(absType));
373374
});
374375
const abstractTypeList = [...abstractTypeSet].sort((a, b) =>

mathesar_ui/src/stores/abstract-types/type-configs/user/user.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
import { type RawColumnWithMetadata, getColumnMetadataValue } from '@mathesar/api/rpc/columns';
1+
import {
2+
type RawColumnWithMetadata,
3+
getColumnMetadataValue,
4+
} from '@mathesar/api/rpc/columns';
25
import type { DbType } from '@mathesar/AppTypes';
36
import { iconUser } from '@mathesar/icons';
47
import type { FormValues } from '@mathesar-component-library/types';

0 commit comments

Comments
 (0)