Skip to content

Commit ce598ca

Browse files
authored
break hash (#174)
## Goal The goal of this PR is to wrap the long hash string Closes #170 ## Discussion - wrap long string - check for any other instances ## Checklist - [ x] PR Self-Review and Commenting - [n/a] Docs updated - [n/a] Tests added ## How To Test the Changes 1. Clone the pr branch 2. trigger error on signup/become a provider flow 3. see error message abiding by margins ## Demo <img width="527" alt="Screenshot 2024-09-25 at 1 53 50 PM" src="https://github.com/user-attachments/assets/b259fd86-106b-43a9-9684-9ac104b949f8"> <img width="415" alt="Screenshot 2024-09-26 at 3 22 05 PM" src="https://github.com/user-attachments/assets/4b87f0da-668b-4be2-bba7-c2bf996fc335"> --------- Co-authored-by: Claire Olmstead <olmsteadclaire@gmail.com>
1 parent 8ba3c81 commit ce598ca

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/ActivityLogPreviewItem.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
<FailureIcon />
1717
{/if}
1818

19-
<div class="text-wrap break-words">
19+
<div class="break-['break-word']">
2020
<div>Hash: {activity.txnId}</div>
21-
<ul class="unordered-list break-words text-sm">
21+
<ul class="unordered-list text-sm">
2222
{#each activity.txnStatusItems as item}
2323
<li>{item}</li>
2424
{/each}

src/components/Nav.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
{/if}
2222
<NavItem href="/faq" isActive={url === '/faq'} onClick={() => (url = '/faq')}>FAQ's</NavItem>
2323
{#if $isLoggedIn === true}
24-
<NavItem href="https://faucet.testnet.frequency.xyz/" target="_blank">Testnet Faucet</NavItem>/
24+
<NavItem href="https://faucet.testnet.frequency.xyz/" target="_blank">Testnet Faucet</NavItem>
2525
<NavItem id="logout-button" href="/" onClick={handleLogout}>Logout</NavItem>
2626
{:else}
2727
<NavItem />

0 commit comments

Comments
 (0)