-
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: Correct empty states #2942
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Pull Request Test Coverage Report for Build 6420835976
💛 - Coveralls |
297afae
to
4290475
Compare
@@ -30,6 +30,7 @@ import WorldsStorage from './WorldsStorage' | |||
import { TabType, useCurrentlySelectedTab } from './hooks' | |||
import { DCLWorldsStatus, fromBytesToMegabytes, getDCLWorldsStatus } from './utils' | |||
import './WorldListPage.css' | |||
import classNames from 'classnames' |
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.
Would you mind moving this import up?
if (tab === TabType.DCL) { | ||
onNavigate(locations.claimENS()) | ||
} else { | ||
window.location.href = 'https://ens.domains' |
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.
Would you mind adding this as a configurable string?
window.location.href = 'https://ens.domains' | |
window.location.href = 'https://ens.domains' |
4290475
to
828c006
Compare
Closes #2937