Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Murderlon committed Nov 15, 2024
1 parent ec7f939 commit 05319ce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
# https://docs.stripe.com/keys
# NOTE: this is the Stripe secret, not the public key
STRIPE_API_KEY=""

# Cloudflare keys only needed if you host your domain there (or plan to use R2/workers/etc)
# https://developers.cloudflare.com/fundamentals/api/get-started/create-token/
# NOTE: Cloudflare offers token presets, choose the one for DNS.
CLOUDFLARE_API_TOKEN=""
# https://developers.cloudflare.com/fundamentals/setup/find-account-and-zone-ids/
CLOUDFLARE_DEFAULT_ACCOUNT_ID=""
5 changes: 3 additions & 2 deletions app/routes/onboarding+/username.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,9 @@ export default function OnboardingUsername() {
autoComplete="off"
ref={inputRef}
required
className={`bg-transparent ${username.errors && 'border-destructive focus-visible:ring-destructive'
}`}
className={`bg-transparent ${
username.errors && 'border-destructive focus-visible:ring-destructive'
}`}
{...getInputProps(username, { type: 'text' })}
/>
</div>
Expand Down

0 comments on commit 05319ce

Please sign in to comment.