-
Notifications
You must be signed in to change notification settings - Fork 9
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: Jump in item new flow #693
Conversation
🔍 Existing Issues For ReviewYour pull request is modifying functions with the following pre-existing issues: 📄 File: src/components/Button/AttendingButtons.tsx
Did you find this useful? React with a 👍 or 👎 |
>(false) | ||
const [servers] = useAsyncMemo(getReamls) | ||
|
||
const isPosition = !!event | ||
const position = isPosition ? event && `${event.x},${event.y}` : "HTTP" |
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 know this is not related to the current change but it confuses a bit (worth to mention for future refactor maybe) but the doubt that it arises on me is: how a X,Y position can be related to the protocol HTTP?
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 can't.
<Button | ||
primary | ||
onClick={handleModalClick} | ||
style={{ marginTop: "28px" }} |
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.
expected in-line?
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.
nice
@@ -1,6 +1,7 @@ | |||
{ | |||
"GATSBY_CHAIN_ID": "1,137", | |||
"GATSBY_DECENTRALAND_URL": "https://play.decentraland.org", | |||
"GATSBY_DECENTRALAND_DOWNLOAD_URL": "https://decentraland.org/download/", |
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.
Are these being used?
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, there are used
@@ -22,6 +23,23 @@ export const getServers = memo( | |||
{ ttl: Infinity } | |||
) | |||
|
|||
export const getReamls = memo( | |||
async () => { | |||
const servers: { address: string }[] = cache.catalysts.mainnet |
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.
always mainnet?
No description provided.