From b2c56cbd6dfa9af576f947dd41a0d33376b184d1 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 14 Aug 2025 01:12:31 +0300 Subject: Add displayName to contexts (#8814) --- src/components/intents/IntentDialogs.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/components/intents/IntentDialogs.tsx') diff --git a/src/components/intents/IntentDialogs.tsx b/src/components/intents/IntentDialogs.tsx index 244850370..40b227e49 100644 --- a/src/components/intents/IntentDialogs.tsx +++ b/src/components/intents/IntentDialogs.tsx @@ -1,7 +1,7 @@ import React from 'react' import * as Dialog from '#/components/Dialog' -import {DialogControlProps} from '#/components/Dialog' +import {type DialogControlProps} from '#/components/Dialog' import {VerifyEmailIntentDialog} from '#/components/intents/VerifyEmailIntentDialog' interface Context { @@ -11,6 +11,7 @@ interface Context { } const Context = React.createContext({} as Context) +Context.displayName = 'IntentDialogsContext' export const useIntentDialogs = () => React.useContext(Context) export function Provider({children}: {children: React.ReactNode}) { -- cgit 1.4.1