Skip to content

Commit c8d37b0

Browse files
committed
remove replace: false, since this is default value anyway
1 parent 47df4db commit c8d37b0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

x-pack/solutions/observability/plugins/slo/public/pages/slos/hooks/use_url_search_state.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,7 @@ export function useUrlSearchState(): {
8888
const updatedState = { ...state, page: 0, ...newState };
8989
setState(() => updatedState);
9090

91-
urlStateStorage.current?.set(SLO_LIST_SEARCH_URL_STORAGE_KEY, updatedState, {
92-
replace: false,
93-
});
91+
urlStateStorage.current?.set(SLO_LIST_SEARCH_URL_STORAGE_KEY, updatedState);
9492

9593
// Discard search itself from session storage. Keep only view preferences
9694
sessionStorage.current?.set(

0 commit comments

Comments
 (0)