Skip to content

Commit

Permalink
Fix another typo
Browse files Browse the repository at this point in the history
  • Loading branch information
malwilley committed May 28, 2024
1 parent 8b7bb09 commit 01ba07e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function updateFilterMultipleValues(
return {...state, query: replaceQueryToken(state.query, token.value, newValue)};
}

function mutliSelectTokenValue(
function multiSelectTokenValue(
state: QueryBuilderState,
action: MultiSelectFilterValueAction
) {
Expand Down Expand Up @@ -199,7 +199,7 @@ export function useQueryBuilderState({initialQuery}: {initialQuery: string}) {
query: replaceQueryToken(state.query, action.token, action.value),
};
case 'TOGGLE_FILTER_VALUE':
return mutliSelectTokenValue(state, action);
return multiSelectTokenValue(state, action);
case 'DELETE_LAST_MULTI_SELECT_FILTER_VALUE':
return deleteLastMultiSelectTokenValue(state, action);
default:
Expand Down

0 comments on commit 01ba07e

Please sign in to comment.