Skip to content

Commit

Permalink
🪄 [QA] Update stage environments (#725)
Browse files Browse the repository at this point in the history
This is a pull request that upon merging will update stage environments
with recent `main` changes.
The environments that will be updated:
* Stage live: https://stage-live--taho-development.netlify.app/
* Stage fork: https://stage-fork--taho-development.netlify.app/

Read more: [Deployment to Production
Flow](https://github.com/tahowallet/dapp/blob/main/docs/testing-env.md)
  • Loading branch information
jagodarybacka authored Nov 21, 2023
2 parents cc9fda4 + 2201de5 commit f1b2d2e
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions src/ui/Island/Cursor/CursorLabel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default function CursorLabel({

const { name, realmName, stakingRealmColor, cursorTextColor } = userInfo
const iconKey = realmName?.toLowerCase() as keyof typeof REALM_ICONS
const iconSrc = REALM_ICONS[iconKey]

return (
<>
Expand All @@ -34,13 +35,8 @@ export default function CursorLabel({
>
{name}
</div>
{realmName && (
<Icon
src={REALM_ICONS[iconKey]}
type="image"
height="16px"
width="16px"
/>
{realmName && iconSrc && (
<Icon src={iconSrc} type="image" height="16px" width="16px" />
)}
</div>
<style jsx>{`
Expand Down

0 comments on commit f1b2d2e

Please sign in to comment.