Skip to content
This repository was archived by the owner on Apr 18, 2026. It is now read-only.

Commit 3fb72d5

Browse files
bdphillybryan-pop
authored andcommitted
fix: add missing .js extensions to relative ESM imports
1 parent 54d87a1 commit 3fb72d5

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

packages/agw-client/src/clients/decorators/linkablePublic.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import {
44
type GetLinkedAccountsParameters,
55
type GetLinkedAccountsReturnType,
66
getLinkedAccounts,
7-
} from '../../actions/getLinkedAccounts';
7+
} from '../../actions/getLinkedAccounts.js';
88
import {
99
type GetLinkedAgwParameters,
1010
type GetLinkedAgwReturnType,
1111
getLinkedAgw,
12-
} from '../../actions/getLinkedAgw';
12+
} from '../../actions/getLinkedAgw.js';
1313

1414
export interface LinkablePublicActions {
1515
getLinkedAgw: (

packages/agw-client/src/clients/decorators/linkableWallet.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ import {
99
import {
1010
type GetLinkedAgwReturnType,
1111
getLinkedAgw,
12-
} from '../../actions/getLinkedAgw';
12+
} from '../../actions/getLinkedAgw.js';
1313
import {
1414
type LinkToAgwParameters,
1515
type LinkToAgwReturnType,
1616
linkToAgw,
17-
} from '../../actions/linkToAgw';
17+
} from '../../actions/linkToAgw.js';
1818

1919
export type LinkableWalletActions<
2020
chain extends Chain | undefined = Chain | undefined,

packages/agw-react/src/query/createSession.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
type CreateSessionParameters,
77
type CreateSessionReturnType,
88
createSession,
9-
} from '../actions/createSession';
9+
} from '../actions/createSession.js';
1010

1111
export function createSessionMutationOptions<config extends Config>(
1212
config: config,

0 commit comments

Comments
 (0)