Compare commits
No commits in common. "46bbeed525cdc6cdc5e8dd21a7d9418dc4fea243" and "a66db56156f0022a7201a11ac2c684d81bee55a5" have entirely different histories.
46bbeed525
...
a66db56156
@ -124,7 +124,7 @@ export function HeroArticle() {
|
|||||||
<div className="flex items-center justify-between pt-4 border-t-2 border-foreground/10">
|
<div className="flex items-center justify-between pt-4 border-t-2 border-foreground/10">
|
||||||
<Link to="/articles/$id" params={{ id: article.id }}>
|
<Link to="/articles/$id" params={{ id: article.id }}>
|
||||||
<Button variant="brutalAccent" className="gap-2">
|
<Button variant="brutalAccent" className="gap-2">
|
||||||
Прочитај повеќе
|
Read Full Story
|
||||||
<ArrowRight className="w-4 h-4" />
|
<ArrowRight className="w-4 h-4" />
|
||||||
</Button>
|
</Button>
|
||||||
</Link>
|
</Link>
|
||||||
|
|||||||
@ -196,7 +196,7 @@ const articleDetailRoute = createRoute({
|
|||||||
return <ArticleDetailComponent id={id} />
|
return <ArticleDetailComponent id={id} />
|
||||||
},
|
},
|
||||||
loader: async ({ params }) => {
|
loader: async ({ params }) => {
|
||||||
const response = await fetch(`${import.meta.env.VITE_API_URL || 'http://localhost:3000/api/v1'}/articles/${params.id}`)
|
const response = await fetch(`${import.meta.env.VITE_API_URL || 'http://localhost:3000'}/api/v1/articles/${params.id}`)
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
return { article: null }
|
return { article: null }
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user