Skip to content

Commit c770808

Browse files
committed
lintingl
1 parent b1ae24e commit c770808

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

packages/local-explorer-ui/src/__tests__/utils/theme-state.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,7 @@ describe("theme-state", () => {
9090
}
9191
});
9292

93-
test('returns "light" when `localStorage.getItem` throws', ({
94-
expect,
95-
}) => {
93+
test('returns "light" when `localStorage.getItem` throws', ({ expect }) => {
9694
vi.spyOn(storageStub, "getItem").mockImplementation(() => {
9795
throw new Error("SecurityError");
9896
});

packages/local-explorer-ui/src/components/TableSelect.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ export function TableSelect({
5151
<CaretUpDownIcon className="h-3.5 w-3.5 text-kumo-subtle" />
5252
</DropdownMenu.Trigger>
5353

54-
<DropdownMenu.Content className="max-h-72 overflow-y-auto" style={{ zIndex: 50 }}>
54+
<DropdownMenu.Content
55+
className="max-h-72 overflow-y-auto"
56+
style={{ zIndex: 50 }}
57+
>
5558
<DropdownMenu.Item icon={PlusIcon} onClick={handleCreateTable}>
5659
Create table
5760
</DropdownMenu.Item>

0 commit comments

Comments
 (0)