fixes: withdraw flow tax check fix + checklist fix (#5360)

* fix: action bar overlap on checklist

* fix: tax form uses local currency not net usd
This commit is contained in:
Calum H.
2026-02-12 13:29:21 +00:00
committed by GitHub
parent e7eb4899a1
commit a9e0655859
3 changed files with 30 additions and 6 deletions

View File

@@ -1,7 +1,21 @@
<script setup lang="ts">
defineProps<{
import { onUnmounted, watch } from 'vue'
const props = defineProps<{
shown: boolean
}>()
watch(
() => props.shown,
(shown) => {
document.body.classList.toggle('floating-action-bar-shown', shown)
},
{ immediate: true },
)
onUnmounted(() => {
document.body.classList.remove('floating-action-bar-shown')
})
</script>
<template>