Skip to content

Commit

Permalink
resolved a lint warning introduced by this PR
Browse files Browse the repository at this point in the history
  • Loading branch information
anguyen-yext2 committed Jun 11, 2024
1 parent 3d4759e commit 809dec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/slices/vertical.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export interface VerticalSearchState {
}

export function isVerticalResults(vertical: VerticalSearchState): vertical is VerticalResults {
const verticalResults = vertical as VerticalResults
const verticalResults = vertical as VerticalResults;
return verticalResults.appliedQueryFilters !== undefined
&& verticalResults.queryDurationMillis !== undefined
&& verticalResults.results !== undefined
Expand Down

0 comments on commit 809dec5

Please sign in to comment.