Remove /explorer 'Explorer'

This commit is contained in:
2024-10-06 01:36:32 -04:00
parent 02d5ef4371
commit 34d51f2c85
6 changed files with 3 additions and 759 deletions

View File

@@ -63,18 +63,7 @@
>
</v-text-field>
</div>
<!-- Buttons -->
<div v-if="!showSearch" class="absolute-center flex">
<v-btn
variant="plain"
icon
class="flex flex-row justify-center"
@click="explorerHandler"
>
<v-icon>mdi-earth</v-icon>
</v-btn>
</div>
</div>
<div class="flex items-center space-x-4 search-container">
@@ -188,10 +177,6 @@ const toggleSearch = () => {
showSearch.value = !showSearch.value;
};
const explorerHandler = () => {
router.push('/explorer');
};
const handleClickOutside = (event) => {
if (!event.target.closest('.search-container')) {
showSearch.value = false;