Skip to content

Commit 7d751a9

Browse files
authored
Merge pull request #38 from Octasol/hotfix/signupdialog
fix:login dialog updated
2 parents f45c9c9 + 7fee6f8 commit 7d751a9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/app/(pages)/bounty/[id]/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,15 +181,15 @@ const BountyDetails = () => {
181181
};
182182

183183
const loginAlert = () => {
184-
toast.error("Login to cotinue reading");
184+
toast.error("Login to continue reading");
185185
};
186186

187187
return (
188188
<>
189189
{bounty ? (
190190
<div className="w-full h-full flex">
191191
<Dialog open={open} onOpenChange={loginAlert}>
192-
<DialogContent className="[&>button]:hidden bg-black" >
192+
<DialogContent className="[&>button]:hidden bg-black">
193193
<DialogHeader>
194194
<DialogTitle>Login</DialogTitle>
195195
<DialogDescription>

src/app/(pages)/bounty/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const Bounty = () => {
8787
}, [bounties, counter, dispatch]);
8888

8989
const loginAlert = () => {
90-
toast.error("Login to cotinue reading");
90+
toast.error("Login to continue reading");
9191
};
9292

9393
return (

0 commit comments

Comments
 (0)