Skip to content

Commit

Permalink
chore(lint): removed async to resolve lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
asalem1 committed Jun 17, 2020
1 parent 27e4c32 commit 8d8517f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/views/actions/thunks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export const getViewForTimeMachine = (
}
}

export const setQueryResultsByQueryID = (queryID: string) => async (
export const setQueryResultsByQueryID = (queryID: string) => (
dispatch,
getState: GetState
): Promise<void> => {
Expand All @@ -145,7 +145,7 @@ export const setQueryResultsForCell = (
dashboardID: string,
cellID: string,
timeMachineID: TimeMachineID
) => async (dispatch, getState: GetState): Promise<void> => {
) => (dispatch, getState: GetState): Promise<void> => {
try {
dispatch(getViewForTimeMachine(dashboardID, cellID, timeMachineID))
const state = getState()
Expand Down

0 comments on commit 8d8517f

Please sign in to comment.