Skip to content

Commit cfb16a3

Browse files
committed
app:ref: update DEEPCRAWL_API_KEY assignment to ensure type safety
1 parent 7aa17df commit cfb16a3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/app/hooks/playground/use-playground-operations.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ interface UsePlaygroundOperationsProps {
2929
}
3030

3131
// API key configuration - matches playground-client pattern
32-
export const DEEPCRAWL_API_KEY =
33-
process.env.NEXT_PUBLIC_DEEPCRAWL_API_KEY || 'demo-key-for-playground';
32+
export const DEEPCRAWL_API_KEY = process.env
33+
.NEXT_PUBLIC_DEEPCRAWL_API_KEY as string;
3434

3535
export function usePlaygroundOperations({
3636
requestUrl,

0 commit comments

Comments
 (0)