Skip to content

Commit

Permalink
remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
ogerly committed Jun 28, 2024
1 parent 40368fb commit 170b548
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions frontend/src/components/menu/BottomMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,16 @@
</template>

<script lang="ts" setup>
import { storeToRefs } from 'pinia'
import { ref } from 'vue'
import CreateButtonMobile from '#components/buttons/CreateButtonMobile.vue'
import MessageIndicator from '#components/menu/MessageIndicator.vue'
import NewsIndicator from '#components/menu/NewsIndicator.vue'
import ListElement from '#components/vuetify/Atoms/ListElement.vue'
import ListWithNavigationDrawer from '#components/vuetify/Organisms/ListWithNavigationDrawer.vue'
import { useRoomsStore } from '#stores/roomsStore'
import Circle from './CircleElement.vue'
import UserInfo from './UserInfo.vue'
const roomsStore = useRoomsStore()
const { rooms: items } = storeToRefs(roomsStore)
const drawer = ref(false)
const location = ref<'bottom' | 'right' | 'left' | 'end' | 'top' | 'start'>('bottom')
Expand Down

0 comments on commit 170b548

Please sign in to comment.