diff --git a/web/apps/dashboard/app/(app)/[workspaceSlug]/apis/[apiId]/_components/create-key/components/credits-setup.tsx b/web/apps/dashboard/app/(app)/[workspaceSlug]/apis/[apiId]/_components/create-key/components/credits-setup.tsx index 1c6d2f9ee3..8669012ba9 100644 --- a/web/apps/dashboard/app/(app)/[workspaceSlug]/apis/[apiId]/_components/create-key/components/credits-setup.tsx +++ b/web/apps/dashboard/app/(app)/[workspaceSlug]/apis/[apiId]/_components/create-key/components/credits-setup.tsx @@ -102,7 +102,7 @@ export const UsageSetup = ({ }; return ( -
+
{!overrideEnabled && ( ( -
+
Refill Rate
-
+

To verify, type {intent} to confirm

diff --git a/web/apps/dashboard/app/(app)/[workspaceSlug]/apis/[apiId]/settings/components/delete-protection.tsx b/web/apps/dashboard/app/(app)/[workspaceSlug]/apis/[apiId]/settings/components/delete-protection.tsx index 868b6eb039..87a2ab7fd6 100644 --- a/web/apps/dashboard/app/(app)/[workspaceSlug]/apis/[apiId]/settings/components/delete-protection.tsx +++ b/web/apps/dashboard/app/(app)/[workspaceSlug]/apis/[apiId]/settings/components/delete-protection.tsx @@ -150,7 +150,7 @@ export const DeleteProtection: React.FC = ({ api }) => { />

-
+

Type {api.name} to confirm

diff --git a/web/apps/dashboard/app/(app)/[workspaceSlug]/apis/_components/api-list-client.tsx b/web/apps/dashboard/app/(app)/[workspaceSlug]/apis/_components/api-list-client.tsx index 45232c4938..78eb341862 100644 --- a/web/apps/dashboard/app/(app)/[workspaceSlug]/apis/_components/api-list-client.tsx +++ b/web/apps/dashboard/app/(app)/[workspaceSlug]/apis/_components/api-list-client.tsx @@ -79,7 +79,7 @@ export const ApiListClient = ({ workspaceSlug }: { workspaceSlug: string }) => { ))}
-
+
Showing {apiList.length} of {apisData?.pages[0]?.total || 0} APIs
@@ -87,12 +87,12 @@ export const ApiListClient = ({ workspaceSlug }: { workspaceSlug: string }) => { {!isSearching && hasNextPage && (
-
+
{/* Loading State */} {generateMutation.isLoading && (
@@ -138,7 +138,7 @@ export function InternalDevTreeGenerator({ onGenerate, onReset }: DevTreeGenerat )} {/* Presets */} -
+
Presets
{Object.entries(PRESETS).map(([key, preset]) => ( @@ -158,11 +158,11 @@ export function InternalDevTreeGenerator({ onGenerate, onReset }: DevTreeGenerat
{/* Custom Configuration */} -
+
Custom
{/* Sentinels*/} -
+
Sentinels: {customConfig.sentinels}
{/* Layout Direction Controls */} -
+
Layout Direction
-
+
Sentinels: diff --git a/web/apps/dashboard/app/auth/sign-up/[[...sign-up]]/page.tsx b/web/apps/dashboard/app/auth/sign-up/[[...sign-up]]/page.tsx index 67c148833e..777ab88c5d 100644 --- a/web/apps/dashboard/app/auth/sign-up/[[...sign-up]]/page.tsx +++ b/web/apps/dashboard/app/auth/sign-up/[[...sign-up]]/page.tsx @@ -52,7 +52,7 @@ export default function AuthenticationPage() { return ( -
+
{isLoading && } {verify ? ( diff --git a/web/apps/dashboard/app/new/components/onboarding-fallback.tsx b/web/apps/dashboard/app/new/components/onboarding-fallback.tsx index 104dbdc9f0..9207561678 100644 --- a/web/apps/dashboard/app/new/components/onboarding-fallback.tsx +++ b/web/apps/dashboard/app/new/components/onboarding-fallback.tsx @@ -37,7 +37,7 @@ export function OnboardingFallback() { body: (
-
+
{ body: (
-
+
{ diff --git a/web/apps/dashboard/components/auth/turnstile-challenge.tsx b/web/apps/dashboard/components/auth/turnstile-challenge.tsx index 4b3a596b66..f84aaa6ff8 100644 --- a/web/apps/dashboard/components/auth/turnstile-challenge.tsx +++ b/web/apps/dashboard/components/auth/turnstile-challenge.tsx @@ -26,7 +26,7 @@ export function TurnstileChallenge({ email, onSuccess, onError }: TurnstileChall } return ( -
+

Security Verification

@@ -39,7 +39,7 @@ export function TurnstileChallenge({ email, onSuccess, onError }: TurnstileChall

{isWidgetLoading && (
-
+
Loading verification...
diff --git a/web/apps/dashboard/components/dashboard/feedback-component.tsx b/web/apps/dashboard/components/dashboard/feedback-component.tsx index 55aaf127f5..4adc718ae1 100644 --- a/web/apps/dashboard/components/dashboard/feedback-component.tsx +++ b/web/apps/dashboard/components/dashboard/feedback-component.tsx @@ -130,7 +130,7 @@ export const Feedback: React.FC = () => { control={control} name="issueType" render={({ field }) => ( -
+
Area
diff --git a/web/apps/dashboard/components/dashboard/metadata/metadata-setup.tsx b/web/apps/dashboard/components/dashboard/metadata/metadata-setup.tsx index 169e4c3db7..21a119f0e2 100644 --- a/web/apps/dashboard/components/dashboard/metadata/metadata-setup.tsx +++ b/web/apps/dashboard/components/dashboard/metadata/metadata-setup.tsx @@ -96,7 +96,7 @@ export const MetadataSetup = ({ overrideEnabled = false, entityType }: MetadataS const descriptions = ENTITY_DESCRIPTIONS[entityType]; return ( -
+
{!overrideEnabled && ( )} -
+
+
{!overrideEnabled && ( {/* biome-ignore lint/suspicious/noExplicitAny: useFieldArray with discriminated unions requires type assertion */} {(fields as any[]).map((field: any, index: number) => ( -
-
+
+
({
))}
-
-
+
+

{label}{" "} diff --git a/web/apps/dashboard/components/selected-item-list.tsx b/web/apps/dashboard/components/selected-item-list.tsx index 3c39e0b865..fe9a07d484 100644 --- a/web/apps/dashboard/components/selected-item-list.tsx +++ b/web/apps/dashboard/components/selected-item-list.tsx @@ -53,7 +53,7 @@ export function SelectedItemsList({ const ItemComponent = enableTransitions ? motion.div : "div"; return ( -

+
{items.map((item) => { diff --git a/web/apps/dashboard/components/ui/sheet.tsx b/web/apps/dashboard/components/ui/sheet.tsx index 227d9da879..392d087af9 100644 --- a/web/apps/dashboard/components/ui/sheet.tsx +++ b/web/apps/dashboard/components/ui/sheet.tsx @@ -90,13 +90,13 @@ const SheetContent = React.forwardRef< SheetContent.displayName = SheetPrimitive.Content.displayName; const SheetHeader = ({ className, ...props }: React.HTMLAttributes) => ( -
+
); SheetHeader.displayName = "SheetHeader"; const SheetFooter = ({ className, ...props }: React.HTMLAttributes) => (
);