Skip to content

Commit

Permalink
Merge pull request #5 from recallwei/v1.1.1
Browse files Browse the repository at this point in the history
Release v1.1.1
  • Loading branch information
recallwei committed Sep 14, 2022
2 parents f2c6f94 + 32a0b1b commit 23c8f14
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
# Changelog

## v1.1

## v1.1.1

- Fix loading background color error in dark mode.

## v1.1.0

- Brand new feature: the note's tasks with links.
- Fix loading background color error in dark mode.
- Click outside and note content will not be cleared when creating a note.

## v1.0

### v1.0.2

- Fix the display of the whitespace error.
Expand Down
11 changes: 7 additions & 4 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@ export default function App(): JSX.Element {
const { i18n } = useTranslation();

return (
<div className={clsx("text-black dark:text-white", i18n.language)}>
<div
className={clsx(
"text-black dark:bg-darkMode-darker dark:text-white",
i18n.language
)}
>
<BrowserRouter>
<Suspense
fallback={<Loading fullScreen className="dark:bg-darkMode-darker" />}
>
<Suspense fallback={<Loading fullScreen />}>
<Routes>
<Route index element={<Home />} />
<Route path="/login" element={<Login />} />
Expand Down

1 comment on commit 23c8f14

@vercel
Copy link

@vercel vercel bot commented on 23c8f14 Sep 14, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.