Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import {
type GetLinkedAccountsParameters,
type GetLinkedAccountsReturnType,
getLinkedAccounts,
} from '../../actions/getLinkedAccounts';
} from '../../actions/getLinkedAccounts.js';
import {
type GetLinkedAgwParameters,
type GetLinkedAgwReturnType,
getLinkedAgw,
} from '../../actions/getLinkedAgw';
} from '../../actions/getLinkedAgw.js';

export interface LinkablePublicActions {
getLinkedAgw: (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import {
import {
type GetLinkedAgwReturnType,
getLinkedAgw,
} from '../../actions/getLinkedAgw';
} from '../../actions/getLinkedAgw.js';
import {
type LinkToAgwParameters,
type LinkToAgwReturnType,
linkToAgw,
} from '../../actions/linkToAgw';
} from '../../actions/linkToAgw.js';

export type LinkableWalletActions<
chain extends Chain | undefined = Chain | undefined,
Expand Down
2 changes: 1 addition & 1 deletion packages/agw-react/src/query/createSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
type CreateSessionParameters,
type CreateSessionReturnType,
createSession,
} from '../actions/createSession';
} from '../actions/createSession.js';

export function createSessionMutationOptions<config extends Config>(
config: config,
Expand Down