Skip to content

Commit 536859e

Browse files
committed
Fix a typo
1 parent a94ce1f commit 536859e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/tool/[slug]/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ export default async function Page({ params: { slug } }: { params: { slug: strin
207207
<Link href={`/@${owned?.username}`} className="text-orange-500 hover:text-orange-400 duration-150">
208208
{owned?.full_name}
209209
</Link>{' '}
210-
{isLaunchStarted ? ' ' : 'Will be launched in '}
210+
{isLaunchStarted ? 'in ' : 'Will be launched '}
211211
{customDateFromNow(product.launch_date)}.
212212
</p>
213213
{isLaunchStarted ? (

components/ui/ToolViewModal/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export default ({ href, tool, close }: { href: string; tool: ProductType; close:
200200
<Link href={`/@${owner?.username}`} className="text-orange-500 hover:text-orange-400 duration-150">
201201
{owner?.full_name}
202202
</Link>{' '}
203-
{isLaunchStarted ? ' ' : 'Will be launched in '}
203+
{isLaunchStarted ? 'in ' : 'Will be launched '}
204204
{customDateFromNow(tool?.launch_date)}.
205205
</p>
206206
{isLaunchStarted ? (

0 commit comments

Comments
 (0)