fix: lazely remove profile popups
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful

This commit is contained in:
JustTemmie 2025-07-03 19:04:16 +02:00
parent 4ebb436fb2
commit 2d424847f7
Signed by: justtemmie
SSH key fingerprint: SHA256:nBO+OwpTkd8LYhe38PIqdxmDvkIg9Vw2EbrRZM97dkU

View file

@ -19,7 +19,8 @@ const props = defineProps<{
const isPopupVisible = ref(false);
const togglePopup = () => {
isPopupVisible.value = !isPopupVisible.value;
isPopupVisible.value = false;
// isPopupVisible.value = !isPopupVisible.value;
};
const hidePopup = () => {