I need assistance with preventing the appearance of two scroll bars while working with Vuetify's sheet and calendar components.
https://i.stack.imgur.com/yBfhj.png
Below is my code snippet:
<template>
<v-app>
<v-main>
<v-container fluid class="fill-height">
<v-row justify="center" class="fill-height">
<v-col cols="12" class="fill-height">
<v-sheet class="fill-height">
<v-calendar type="week" />
</v-sheet>
</v-col>
</v-row>
</v-container>
</v-main>
</v-app>
</template>