remove unused variables

This commit is contained in:
Athou
2025-04-16 01:16:32 +02:00
parent 9d16299c5b
commit 1cec4e68b1
4 changed files with 4 additions and 5 deletions

View File

@@ -50,7 +50,7 @@ const buildGetEntriesPaginatedRequest = (state: RootState, source: EntrySource,
keywords: state.entries.search,
})
export const reloadEntries = createAppAsyncThunk("entries/reload", (arg, thunkApi) => {
export const reloadEntries = createAppAsyncThunk("entries/reload", (_, thunkApi) => {
const state = thunkApi.getState()
thunkApi.dispatch(loadEntries({ source: state.entries.source, clearSearch: false }))
})