Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
dmosites committed Mar 11, 2024
1 parent 2ab2819 commit 09a582a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/features/metadata/metadataSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ export const fetchProtocolFee = createAsyncThunk<
provider: Web3Provider;
chainId: number;
}
>("metadata/fetchProtocolFee", async ({ provider, chainId }) => getProtocolFee(chainId, provider));
>("metadata/fetchProtocolFee", async ({ provider, chainId }) =>
getProtocolFee(chainId, provider)
);

export const metadataSlice = createSlice({
name: "metadata",
Expand Down

0 comments on commit 09a582a

Please sign in to comment.