-
Notifications
You must be signed in to change notification settings - Fork 82
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
feat: Duplicate world list page #2923
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Pull Request Test Coverage Report for Build 6341063417
💛 - Coveralls |
src/components/WorldListPage_WorldsForEnsOwnersFeature/WorldListPage.tsx
Outdated
Show resolved
Hide resolved
@@ -128,7 +131,7 @@ export default class Routes extends React.Component<Props, State> { | |||
<Route exact key={3} path={locations.landSelectENS()} component={LandSelectENSPage} />, | |||
<Route exact key={4} path={locations.landAssignENS()} component={LandAssignENSPage} />, | |||
<Route exact key={5} path={locations.ensSelectLand()} component={ENSSelectLandPage} /> | |||
<Route exact path={locations.worlds()} component={WorldListPage} />, | |||
<Route exact path={locations.worlds()} component={ToRenderWorldListPage} />, |
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.
Be aware that if you access the site via URL, you might not be able to load the new component as the FF might not have been queried yet.
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.
Good catch, I'll try it out
Closes #2909
Duplicating the WorldListPage component that will then be modified in other prs for the new worlds for ens feature.