Skip to content

Commit

Permalink
fix type issue from race condition on merge
Browse files Browse the repository at this point in the history
  • Loading branch information
delanni committed Oct 2, 2024
1 parent 9174588 commit 6a96e76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const ApiKeyContext = createContext<APIKeyContext>({
initialiseKey: () => {},
});

export const SearchApiKeyProvider: React.FC = ({ children }) => {
export const SearchApiKeyProvider: React.FC<React.PropsWithChildren> = ({ children }) => {
const { http } = useKibana().services;
const [state, dispatch] = useReducer(reducer, initialState);

Expand Down

0 comments on commit 6a96e76

Please sign in to comment.