Skip to content

Commit 76ccf53

Browse files
committed
fix: regression related types; update: model type.
1 parent b1918b9 commit 76ccf53

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/lib/helpers/types.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@ export type TableRootProp = {
6060
selectedAll: boolean;
6161
selectedNone: boolean;
6262
selectedSome: boolean;
63-
columns: Array<PinkColumn> | number;
64-
columnsMap: Record<PinkColumn['id'], PinkColumn>;
63+
// columns: Array<Column> | number;
64+
columns: Record<PinkColumn['id'], PinkColumn>;
65+
// columnsMap: Record<PinkColumn['id'], PinkColumn>;
6566
toggle: (id: string) => void;
6667
toggleAll: () => void;
6768
addAvailableId: (id: string) => void;

src/routes/(console)/organization-[organization]/domains/retryDomainModal.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
selectedDomain
1717
}: {
1818
show: boolean;
19-
selectedDomain: Models.ProxyRule;
19+
selectedDomain: Models.Domain;
2020
} = $props();
2121
2222
const nameservers = $consoleVariables?._APP_DOMAINS_NAMESERVERS.split(',') ?? [

0 commit comments

Comments
 (0)