Skip to content

Commit

Permalink
fix: sync popup is not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
reyamir committed Aug 5, 2024
1 parent dde23df commit 4c60e55
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"babel-plugin-react-compiler": "0.0.0-experimental-696af53-20240625",
"clsx": "^2.1.1",
"postcss": "^8.4.40",
"tailwind-gradient-mask-image": "^1.2.0",
"tailwind-merge": "^2.4.0",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4",
Expand Down
8 changes: 8 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/routes/$account.chats.lazy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ function ChatList() {
))
)}
</ScrollArea.Viewport>
{!isSync && !data ? <SyncPopup progress={progress} /> : null}
{!isSync ? <SyncPopup progress={progress} /> : null}
<ScrollArea.Scrollbar
className="flex select-none touch-none p-0.5 duration-[160ms] ease-out data-[orientation=vertical]:w-2"
orientation="vertical"
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ export default {
},
},
},
plugins: [],
plugins: [require("tailwind-gradient-mask-image")]
};

0 comments on commit 4c60e55

Please sign in to comment.