Skip to content

Commit 889ef26

Browse files
committed
Fix knip lint issues
1 parent bdb1dd5 commit 889ef26

File tree

2 files changed

+5
-5
lines changed
  • apps/dashboard/src
    • @3rdweb-sdk/react/hooks
    • app/team/[team_slug]/(team)/~/engine/(instance)/[engineId]/wallet-credentials/components

2 files changed

+5
-5
lines changed

apps/dashboard/src/@3rdweb-sdk/react/hooks/useEngine.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1873,7 +1873,7 @@ export interface WalletCredential {
18731873
updatedAt: string;
18741874
}
18751875

1876-
export interface CreateWalletCredentialInput {
1876+
interface CreateWalletCredentialInput {
18771877
type: "circle";
18781878
label: string;
18791879
entitySecret?: string;
@@ -1938,7 +1938,7 @@ export function useEngineCreateWalletCredential(params: {
19381938
});
19391939
}
19401940

1941-
export interface UpdateWalletCredentialInput {
1941+
interface UpdateWalletCredentialInput {
19421942
label?: string;
19431943
isDefault?: boolean;
19441944
entitySecret?: string;

apps/dashboard/src/app/team/[team_slug]/(team)/~/engine/(instance)/[engineId]/wallet-credentials/components/types.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
export interface BaseCredentialFormData {
1+
interface BaseCredentialFormData {
22
type: string;
33
label: string;
44
}
55

6-
export type CircleCredentialFormData = BaseCredentialFormData & {
6+
type CircleCredentialFormData = BaseCredentialFormData & {
77
type: "circle";
88
entitySecret: string;
99
};
1010

11-
export type CircleCredentialUpdateFormData = BaseCredentialFormData & {
11+
type CircleCredentialUpdateFormData = BaseCredentialFormData & {
1212
type: "circle";
1313
entitySecret?: string;
1414
};

0 commit comments

Comments
 (0)