-
Notifications
You must be signed in to change notification settings - Fork 0
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
Improve mobile view #102
Improve mobile view #102
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
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.
Sweet, went through the page on mobile - looks good.
The only thing is the crashing when transaction has not yet been executed
<TransactionProperty | ||
param="Transaction hash" | ||
value={ | ||
<TransactionHash | ||
transactionHash={transaction.transactionHash} | ||
noStyle | ||
/> | ||
} | ||
/> |
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.
If the transaction has not been executed, the transaction hash will be null thus crashing frontend since we have no error boundaries
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.
To reproduce please choose any discarded transaction of your liking and try to expand it
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.
Yet again safe api kit typings are wrong, I'll submit a fix soonish ;p
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.
@@ -40,7 +40,7 @@ export function RowLabel({ | |||
return ( | |||
<div | |||
className={cx( | |||
'py-2 pr-2 text-sm font-medium leading-5 text-gray-100 md:w-1/5 md:py-0', | |||
'py-2 pr-2 text-sm font-medium leading-5 text-zinc-200 md:w-1/5 md:py-0', | |||
widthRation, |
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 see I made typo back then, could you please fix it?
widthRation
=> widthRatio
thx ❗
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.
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.
n1
Resolves L2B-3174