diff --git a/src/extension/background-script/actions/accounts/__tests__/info.test.ts b/src/extension/background-script/actions/accounts/__tests__/info.test.ts index a8943c2ace..512aed3d7a 100644 --- a/src/extension/background-script/actions/accounts/__tests__/info.test.ts +++ b/src/extension/background-script/actions/accounts/__tests__/info.test.ts @@ -31,7 +31,7 @@ describe("account info", () => { application: "LBE", origin: { internal: true }, prompt: true, - type: "accountInfo", + action: "accountInfo", }; state.getState = jest.fn().mockReturnValue(mockState); diff --git a/src/types.ts b/src/types.ts index 5e7ac24fc8..d7442ed33a 100644 --- a/src/types.ts +++ b/src/types.ts @@ -101,7 +101,7 @@ export interface MessageAccountEdit extends MessageDefault { } export interface MessageAccountInfo extends Omit { - type: "accountInfo"; + action: "accountInfo"; } interface LNURLChannelServiceResponse {