-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Misc Updates #2465
Misc Updates #2465
Conversation
robhyrk
commented
Jan 14, 2025
- remove airdrop btn and memecoin markets from front page
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Skipped Deployment
|
components/front-page/Topics.tsx
Outdated
className={` | ||
{topics.map((topic, index) => { | ||
return ( | ||
//TODO: temp solution. waiting for login |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you mean by waiting for login
? Do you need login access to the content management system, in which you can deactivate topics on the front end?
components/front-page/Topics.tsx
Outdated
<Image | ||
{topics.map((topic, index) => { | ||
return ( | ||
topic.slug !== "gaza" && ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you meant memecoin-markets
here instead of gaza
, but anyways... I don't think it's optimal to exclude the memecoin-markets
here in this Topics
component, because this line indicates that it will select the first entry from the CMS, which is the memecoin-markets entry. I would rather wait for the access of the CMS instead of doing the dirty fix like here. When will you get access to the CMS? If it took too long to gain access to the CMS, I would suggest changing this line to skip to the next item from the CMS if the memecoin-markets
topic is going to be selected.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, thank you. haven't touched Zeitgeist code for a while so just getting back to it. I saw your comment from earlier on DIscord and have removed the sections as per your suggestion
E2E Tests failing in the CI? |
I'm not sure if these are even setup correctly so I'll need to look into it. Might just disable until we can get a fix on it |