mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-11 22:44:56 +02:00
13 lines
343 B
TypeScript
13 lines
343 B
TypeScript
|
import ApiKeyContext from "@app/contexts/apiKeyContext";
|
||
|
import { useContext } from "react";
|
||
|
|
||
|
export function useApiKeyContext() {
|
||
|
const context = useContext(ApiKeyContext);
|
||
|
if (context === undefined) {
|
||
|
throw new Error(
|
||
|
"useApiKeyContext must be used within a ApiKeyProvider"
|
||
|
);
|
||
|
}
|
||
|
return context;
|
||
|
}
|