Skip to content

Commit

Permalink
Merge branch 'main' into feat--billing-dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
nimish-ks authored Dec 4, 2024
2 parents 5c5ab32 + 518fd75 commit 4989669
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions frontend/components/apps/DeleteAppDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,19 +143,15 @@ export default function DeleteAppDialog(props: {
</Alert>

<div className="flex flex-col justify-center max-w-md mx-auto">
<label
className="block text-gray-700 text-sm font-bold mb-2"
htmlFor="appname"
>
Please type the App name to confirm
</label>
<div className="text-sm text-gray-500 dark:text-gray-400 mb-2">
Please enter the App name <span className="text-gray-900 dark:text-white font-mono font-medium">{appName}</span> to confirm:
</div>
<input
id="appname"
className="text-lg"
required
maxLength={64}
value={typedName}
placeholder="MyApp"
onChange={(e) => setTypedName(e.target.value)}
/>
</div>
Expand Down

0 comments on commit 4989669

Please sign in to comment.