diff --git a/packages/integrations/image/components/index.ts b/packages/integrations/image/components/index.ts index 6a8f420ada..e60494398a 100644 --- a/packages/integrations/image/components/index.ts +++ b/packages/integrations/image/components/index.ts @@ -15,7 +15,9 @@ export type HTMLAttributes = Omit< let altWarningShown = false; export function warnForMissingAlt() { - if (altWarningShown === true) { return } + if (altWarningShown === true) { + return; + } altWarningShown = true;