Skip to content

Commit

Permalink
fix: πŸ› fix query bar merge errors
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Oct 30, 2019
1 parent 385f494 commit 6504209
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ function QueryBarTopRowUI(props: Props) {

const queryLanguage = props.query && props.query.language;
const persistedLog: PersistedLog | undefined = React.useMemo(
() =>
queryLanguage ? getQueryLog(uiSettings!, store, appName, queryLanguage) : undefined,
() => (queryLanguage ? getQueryLog(uiSettings!, storage, appName, queryLanguage) : undefined),
[queryLanguage]
);

Expand Down

0 comments on commit 6504209

Please sign in to comment.