Skip to content

Commit

Permalink
Enable migration form (#2222)
Browse files Browse the repository at this point in the history
* Fix

* Show migration popup
  • Loading branch information
harsh-mn-yral authored Jun 6, 2024
1 parent afd5d03 commit a87f7cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions packages/web-client/src/routes/(feed)/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { page } from '$app/stores'
import { playerState } from '$lib/stores/app'
import { onDestroy, onMount } from 'svelte'
import { authState, loadingAuthStatus } from '$lib/stores/auth'
import IconButton from '@hnn/components/button/IconButton.svelte'
import { browser } from '$app/environment'
import { showMigrationPopup } from '$lib/stores/popups'
import MigrationPopup from '@hnn/components/popup/MigrationPopup.svelte'
Expand Down Expand Up @@ -68,7 +67,7 @@ $: showPopup =
{/if}
</div>
</HomeLayout>
<!--

{#if showPopup}
<MigrationPopup on:click={() => showMigrationPopup.set(false)} />
{/if} -->
{/if}
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ onDestroy(() => clearMonitoring())
watchHistoryDb="watch"
showReportButton
showLikeButton
showReferAndEarnLink
showShareButton
showDescription
showHotOrNotButton
Expand Down
2 changes: 1 addition & 1 deletion packages/web-client/src/routes/(feed)/wallet/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ onMount(() => ($showMigrationPopup = true))
</div>
<div
class="flex w-full flex-col items-center justify-center space-y-1 py-4">
<div class="text-sm uppercase">Your coins balance</div>
<div class="text-sm uppercase">Your coyns balance</div>
{#if errorBalance}
<div class="text-sm font-bold opacity-50">Error loading balance</div>
{:else if loadBalanced}
Expand Down

0 comments on commit a87f7cd

Please sign in to comment.