diff --git a/.env.example b/.env.example index 3d123d2..555758c 100644 --- a/.env.example +++ b/.env.example @@ -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="" diff --git a/app/routes/onboarding+/username.tsx b/app/routes/onboarding+/username.tsx index 3305138..1e8c7b4 100644 --- a/app/routes/onboarding+/username.tsx +++ b/app/routes/onboarding+/username.tsx @@ -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' })} />