Skip to content

Commit c2aa100

Browse files
chore: fmt
1 parent 99724a4 commit c2aa100

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/frontend/src/lib/components/satellites/auth/UsersContext.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import type { ListDocsFn } from '$lib/services/satellite/_list-docs.services';
66
import { listUsers } from '$lib/services/satellite/user/users.services';
77
import { i18n } from '$lib/stores/app/i18n.store';
8-
import type { User as UserType } from '$lib/types/user';
98
import { ListParamsKey } from '$lib/types/list-params.context';
9+
import type { User as UserType } from '$lib/types/user';
1010
1111
interface Props {
1212
satelliteId: Principal;

src/frontend/src/lib/components/satellites/automation/workflows/WorkflowsContext.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
import type { ListDocsFn } from '$lib/services/satellite/_list-docs.services';
55
import { listWorkflows } from '$lib/services/satellite/automation/workflows.services';
66
import { i18n } from '$lib/stores/app/i18n.store';
7+
import { type ListParamsData, ListParamsKey } from '$lib/types/list-params.context';
78
import type { Satellite } from '$lib/types/satellite';
89
import type { Workflow } from '$lib/types/workflow';
9-
import { type ListParamsData, ListParamsKey } from '$lib/types/list-params.context';
1010
1111
interface Props {
1212
satellite: Satellite;
@@ -30,10 +30,10 @@
3030

3131
<ListContext
3232
bind:this={listContextRef}
33+
{defaultListParams}
3334
errorLabel={$i18n.errors.load_users}
3435
{listFn}
3536
listKey={ListParamsKey.WORKFLOWS}
36-
{defaultListParams}
3737
{satelliteId}
3838
>
3939
<Workflows {reload} />

src/frontend/src/lib/components/satellites/list/ListContext.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
import { toasts } from '$lib/stores/app/toasts.store';
1010
import { versionStore } from '$lib/stores/version.store';
1111
import {
12+
type ListParamsKey,
1213
LIST_PARAMS_CONTEXT_KEY,
13-
ListParamsKey,
1414
type ListParamsContext,
1515
type ListParamsData
1616
} from '$lib/types/list-params.context';

0 commit comments

Comments
 (0)