Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-tavares committed Apr 24, 2020
1 parent aadb624 commit bea9a0c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const showView: (state: HostState) => 'policy_response' | 'details' = cre
/**
* Returns the Policy Response overall status
*/
export const policyResponseStatus: (state: Immutable<HostListState>) => string = createSelector(
export const policyResponseStatus: (state: Immutable<HostState>) => string = createSelector(
state => state.policyResponse,
policyResponse => {
return (policyResponse && policyResponse?.endpoint?.policy?.applied?.status) || '';
Expand Down

0 comments on commit bea9a0c

Please sign in to comment.