chore: fix typo

This commit is contained in:
Daan Wijns 2024-01-13 12:21:18 +01:00
parent cdb04179c8
commit 2dbdef390e

View file

@ -96,7 +96,7 @@ const checkNewVersion = async () => {
if (vueTorrentVersion.value === 'DEV') return if (vueTorrentVersion.value === 'DEV') return
const latest = await github.getVersion() const latest = await github.getVersion()
if ('vueTorrentVersion.value' === latest) return if (`v${vueTorrentVersion.value}` === latest) return
toast.info(t('toast.new_version')) toast.info(t('toast.new_version'))
} }