Skip to content

Commit f7f5da0

Browse files
committed
chore: fix missing underscores
1 parent 1fa79e7 commit f7f5da0

File tree

12 files changed

+8
-8
lines changed

12 files changed

+8
-8
lines changed

src/routes/console/project-[project]/databases/[[page]]/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import { Pill } from '$lib/elements';
77
import { Container } from '$lib/layout';
88
import { base } from '$app/paths';
9-
import Create from '../_create.svelte';
9+
import Create from '../create.svelte';
1010
import type { Models } from '@aw-labs/appwrite-console';
1111
import type { PageData } from './$types';
1212
import { CARD_LIMIT } from '$lib/constants';
File renamed without changes.

src/routes/console/project-[project]/databases/database-[database]/collection-[collection]/document-[document]/attribute.svelte

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<script lang="ts">
22
import type { Models } from '@aw-labs/appwrite-console';
3-
import Boolean from './attributes/_boolean.svelte';
4-
import Datetime from './attributes/_datetime.svelte';
5-
import Enum from './attributes/_enum.svelte';
6-
import Integer from './attributes/_integer.svelte';
7-
import String from './attributes/_string.svelte';
3+
import Boolean from './attributes/boolean.svelte';
4+
import Datetime from './attributes/datetime.svelte';
5+
import Enum from './attributes/enum.svelte';
6+
import Integer from './attributes/integer.svelte';
7+
import String from './attributes/string.svelte';
88
99
export let id: string;
1010
export let label: string;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/routes/console/project-[project]/storage/bucket-[bucket]/[[page]]/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
SearchQuery
1515
} from '$lib/components';
1616
import Create from '../create.svelte';
17-
import Delete from '../_deleteFile.svelte';
17+
import Delete from '../deleteFile.svelte';
1818
import {
1919
Table,
2020
TableHeader,
File renamed without changes.

0 commit comments

Comments
 (0)