Skip to content

Commit

Permalink
revert core app services change
Browse files Browse the repository at this point in the history
  • Loading branch information
hop-dev committed Nov 4, 2021
1 parent 7b787a0 commit 7138566
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const createKbnUrlStateStorage = (
onGetError,
onSetError,
}: {
useHash?: boolean;
useHash: boolean;
useHashQuery?: boolean;
history?: History;
onGetError?: (error: Error) => void;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const AgentLogs: React.FunctionComponent<Pick<AgentLogsProps, 'agent' | '
const [isSyncReady, setIsSyncReady] = useState<boolean>(false);

useEffect(() => {
const stateStorage = createKbnUrlStateStorage({ useHashQuery: false });
const stateStorage = createKbnUrlStateStorage({ useHashQuery: false, useHash: false });
const { start, stop } = syncState({
storageKey: STATE_STORAGE_KEY,
stateContainer: stateContainer as INullableBaseStateContainer<AgentLogsState>,
Expand Down

0 comments on commit 7138566

Please sign in to comment.