Skip to content

Commit

Permalink
style: fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilhenry committed Nov 22, 2023
1 parent 8f6232b commit 62af6af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions mathesar_ui/src/pages/schema/SchemaOverview.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
import type { Database, SchemaEntry } from '@mathesar/AppTypes';
import { AnchorButton, Button, Icon } from '@mathesar-component-library';
import { getDataExplorerPageUrl } from '@mathesar/routes/urls';
import type { RequestStatus } from '@mathesar/api/utils/requestUtils';
import ErrorBox from '@mathesar/components/message-boxes/ErrorBox.svelte';
import OverviewHeader from './OverviewHeader.svelte';
import TablesList from './TablesList.svelte';
import ExplorationsList from './ExplorationsList.svelte';
Expand All @@ -12,12 +14,9 @@
import CreateNewTableButton from './CreateNewTableButton.svelte';
import TableSkeleton from './TableSkeleton.svelte';
import ExplorationSkeleton from './ExplorationSkeleton.svelte';
import type { RequestStatus } from '@mathesar/api/utils/requestUtils';
import ErrorBox from '@mathesar/components/message-boxes/ErrorBox.svelte';
import { currentSchemaId } from '@mathesar/stores/schemas';
import { iconRefresh } from '@mathesar/icons';
import { refetchQueriesForSchema } from '@mathesar/stores/queries';
import type { RequireExactlyOne } from 'type-fest';
import { refetchTablesForSchema } from '@mathesar/stores/tables';
export let tablesMap: Map<number, TableEntry>;
Expand Down
2 changes: 1 addition & 1 deletion mathesar_ui/src/pages/schema/SchemaPage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
</div>
{:else if activeTab?.id === 'explorations'}
<div class="tab-container">
{#if explorationsRequestStatus.state == 'processing'}
{#if explorationsRequestStatus.state === 'processing'}
<ExplorationSkeleton />
{:else}
<SchemaExplorations
Expand Down

0 comments on commit 62af6af

Please sign in to comment.