fix(library): Added "LIbrary Failed to Update" content to recover from library load fail

This commit is contained in:
quexeky
2025-01-24 22:35:09 +11:00
parent 53234d283e
commit 76bae3d926
2 changed files with 21 additions and 3 deletions

View File

@ -1,3 +1,9 @@
<script setup lang="ts">
const props = defineProps<{ libraryDownloadError: boolean }>();
</script>
<template>
<div v-if="libraryDownloadError" class="mx-auto pt-10 text-center text-gray-500">
Library Failed to update
</div>
</template>