Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Jan 22, 2025
1 parent d45f1fd commit 5de2d87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/loot-core/src/client/queries/queriesSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ type CreateAccountPayload = {

export const createAccount = createAppAsyncThunk(
`${sliceName}/createAccount`,
async ({ name, balance, offBudget }: CreateAccountPayload, { dispatch }) => {
async ({ name, balance, offBudget }: CreateAccountPayload) => {
const id: AccountEntity['id'] = await send('account-create', {
name,
balance,
Expand Down

0 comments on commit 5de2d87

Please sign in to comment.