Skip to content

Commit 503c2e1

Browse files
authored
Spotted small issues (wasp-lang#26)
* Fix typo readme * Hotfix dark theme for Account page
1 parent e09e641 commit 503c2e1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Because we're using Wasp as the full-stack framework, we can leverage a lot of i
3333
- 🔐 [Full-stack Authentication](https://wasp-lang.dev/docs/auth/overview) - Email verified + social Auth in a few lines of code.
3434
-[End-to-end Type Safety](https://wasp-lang.dev/docs/data-model/operations/overview) - Type your backend functions and get inferred types on the front-end automatically, without the need to install or configure any third-party libraries. Oh, and type-safe Links, too!
3535
- 🤖 [Jobs](https://wasp-lang.dev/docs/language/features#jobs) - Run cron jobs in the background or set up queues simply by defining a function in the config file.
36-
- 🚀 [One-command Deploy](https://wasp-lang.dev/docs/advanced/deployment/overview) - Easily deploy via the CLI to [Fly.io](https://fly.io), or to other provides like [Railway](https://railway.app) and [Netlify](https://netlify.com).
36+
- 🚀 [One-command Deploy](https://wasp-lang.dev/docs/advanced/deployment/overview) - Easily deploy via the CLI to [Fly.io](https://fly.io), or to other providers like [Railway](https://railway.app) and [Netlify](https://netlify.com).
3737

3838
You also get access to Wasp's diverse, helpful community if you get stuck or need help.
3939
- 🤝 [Wasp Discord](https://discord.gg/aCamt5wCpS)

app/src/client/app/AccountPage.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ export default function AccountPage({ user }: { user: User }) {
1515
<dl className='sm:divide-y sm:divide-gray-200'>
1616
{!!user.email && (
1717
<div className='py-4 sm:grid sm:grid-cols-3 sm:gap-4 sm:py-5 sm:px-6'>
18-
<dt className='text-sm font-medium text-gray-500'>Email address</dt>
19-
<dd className='mt-1 text-sm text-gray-900 sm:col-span-2 sm:mt-0'>{user.email}</dd>
18+
<dt className='text-sm font-medium text-gray-500 dark:text-white'>Email address</dt>
19+
<dd className='mt-1 text-sm text-gray-900 dark:text-gray-400 sm:col-span-2 sm:mt-0'>{user.email}</dd>
2020
</div>
2121
)}
2222
{!!user.username && (
2323
<div className='py-4 sm:grid sm:grid-cols-3 sm:gap-4 sm:py-5 sm:px-6'>
24-
<dt className='text-sm font-medium text-gray-500'>Username</dt>
25-
<dd className='mt-1 text-sm text-gray-900 sm:col-span-2 sm:mt-0'>{user.username}</dd>
24+
<dt className='text-sm font-medium text-gray-500 dark:text-white'>Username</dt>
25+
<dd className='mt-1 text-sm text-gray-900 dark:text-gray-400 sm:col-span-2 sm:mt-0'>{user.username}</dd>
2626
</div>
2727
)}
2828
<div className='py-4 sm:grid sm:grid-cols-3 sm:gap-4 sm:py-5 sm:px-6'>

0 commit comments

Comments
 (0)