Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
malwilley committed May 23, 2024
1 parent 627d4b4 commit 8b7bb09
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function mutliSelectTokenValue(
}
}

function deleteLastMutliSelectTokenValue(
function deleteLastMultiSelectTokenValue(
state: QueryBuilderState,
action: DeleteLastMultiSelectFilterValueAction
) {
Expand Down Expand Up @@ -201,7 +201,7 @@ export function useQueryBuilderState({initialQuery}: {initialQuery: string}) {
case 'TOGGLE_FILTER_VALUE':
return mutliSelectTokenValue(state, action);
case 'DELETE_LAST_MULTI_SELECT_FILTER_VALUE':
return deleteLastMutliSelectTokenValue(state, action);
return deleteLastMultiSelectTokenValue(state, action);
default:
return state;
}
Expand Down

0 comments on commit 8b7bb09

Please sign in to comment.