Skip to content

Commit

Permalink
fix: blogs
Browse files Browse the repository at this point in the history
  • Loading branch information
bennettyong committed Mar 27, 2024
1 parent 5690819 commit 88a25c9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/locales/en/ecosystem.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"title": "Explore the <span>Taiko</span> Ecosystem",
"suptitle": "About ecosystem",
"text": "Join a supportive, collaborative ecosystem with a greater purpose – permissionless, flexible, and dedicated to defining the future of Ethereum.",
"joinOurEcosystem": "Join our ecosystem",
"joinOurEcosystem": "Submit your project",
"dapps": "dApps",
"searchProjects": "Search for projects...",
"allTypes": "all types",
Expand Down
1 change: 1 addition & 0 deletions src/entities/article/ui/blog-item/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export const BlogItem: React.FC<Props> = ({
className={clsx(css.root, className)}
href={url!}
data-class="blog"
target="_blank"
>
<div className={css.image}>
<Image
Expand Down
1 change: 1 addition & 0 deletions src/shared/lib/types/blog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { IBaseFields, IServerResponse } from "./global";
export interface IBlog extends IBaseFields {
title: string;
slug: string;
link: string;
timeToRead: string;
category: IBlogCategory;
image: IFileObject;
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/08-blog-screens/ui/02-blogs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const Blogs: React.FC = () => {
>
<BlogItem
className={css.blog}
url={`/blog/${item.id}`}
url={item.link}
title={item.title}
timeToRead={item.timeToRead}
categoryName={item.category.name}
Expand Down

0 comments on commit 88a25c9

Please sign in to comment.