Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminshafii committed Nov 28, 2024
1 parent 081c3c0 commit 21c9ccf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/app/components/license-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const LicenseForm = () => {
<div className="mt-8 flex flex-col ">
{isPaid ? (
<>
<Card className="w-[350px] bg-transparent">
<Card className="w-full bg-transparent">
<CardHeader></CardHeader>
<form action={onCreate} onSubmit={handleSubmit}>
<CardFooter className="flex justify-center">
Expand All @@ -71,15 +71,15 @@ const LicenseForm = () => {
{loading ? "Generating Key..." : "Create Key"}{" "}
</Button>{" "}
</CardFooter>
<CardDescription>
<CardDescription className="text-center">
You'll need it to unlock File Organizer 2000 in your plugin
settings.
</CardDescription>
</form>
</Card>
{licenseKey && licenseKey.length > 0 && (
<>
<Card className="w-[350px] mt-8 rounded-lg">
<Card className="w-full mt-8 rounded-lg">
<CardContent>
<div className="grid items-center w-full gap-4">
<div className="flex flex-col space-y-1.5">
Expand Down

0 comments on commit 21c9ccf

Please sign in to comment.