-
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
fix(PE-7543): only owner will see primary name button #672
Conversation
}) => { | ||
const [{ arioProcessId, antAoClient }] = useGlobalState(); | ||
const [{ wallet, walletAddress }] = useWalletState(); | ||
const isOwner = walletAddress | ||
? state?.Owner === walletAddress?.toString() |
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.
? state?.Owner === walletAddress?.toString() | |
? state?.Owner === walletAddress.toString() |
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.
@@ -98,6 +98,9 @@ const UndernamesTable = ({ | |||
const [searchParams, setSearchParams] = useSearchParams(); | |||
const [{ arioProcessId, antAoClient }] = useGlobalState(); | |||
const [{ wallet, walletAddress }] = useWalletState(); | |||
const isOwner = walletAddress | |||
? info?.Owner === walletAddress?.toString() |
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.
? info?.Owner === walletAddress?.toString() | |
? info?.Owner === walletAddress.toString() |
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.
Visit the preview URL for this PR (updated for commit 61d94eb): https://arns-portal--pr672-pe-7543-undernames-a-hph5ntr3.web.app (expires Tue, 25 Feb 2025 22:00:44 GMT) 🔥 via Firebase Hosting GitHub Action 🌎 Sign: 1f59769442cb89cf2a92042a342e51fe94047b94 |
No description provided.