Skip to content

Commit a70a6c3

Browse files
committed
Fix wrong boolean forgotten in 95d1d30
1 parent 726b4f5 commit a70a6c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/UpdateNotification.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { updateServiceWorker } from '../registerServiceWorker';
2323
2424
export default defineComponent({
2525
setup() {
26-
const isShown = ref(true);
26+
const isShown = ref(false);
2727
2828
const { updateAvailable } = useSettingsStore();
2929
watch(updateAvailable, (isAvailable) => {

0 commit comments

Comments
 (0)