From ced351e456f5d0127e953c0963af07d9fc7b6508 Mon Sep 17 00:00:00 2001 From: esaminu Date: Thu, 20 Jan 2022 03:10:29 +0400 Subject: [PATCH] fix: action name for fetchToken --- packages/frontend/src/redux/slices/tokens/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/redux/slices/tokens/index.js b/packages/frontend/src/redux/slices/tokens/index.js index b80c118cc3..eb7f8cb341 100644 --- a/packages/frontend/src/redux/slices/tokens/index.js +++ b/packages/frontend/src/redux/slices/tokens/index.js @@ -77,7 +77,7 @@ const fetchTokens = createAsyncThunk( ); const fetchToken = createAsyncThunk( - `${SLICE_NAME}/fetchTokens`, + `${SLICE_NAME}/fetchToken`, async ({ contractName, accountId }, thunkAPI) => { const { dispatch, getState } = thunkAPI; const { actions: { setContractMetadata } } = tokensSlice;