chore: fix conflict

This commit is contained in:
Faisal Amir 2025-09-09 14:47:46 +07:00 committed by Akarshan
parent cbd2651a63
commit 6067ffe107
No known key found for this signature in database
GPG Key ID: D75C9634A870665F

View File

@ -365,7 +365,9 @@ function ProviderDetail() {
await installBackend(processedFilePath)
// Extract filename from the selected file path and replace spaces with dashes
const fileName = (selectedFile.split(/[/\\]/).pop() || selectedFile).replace(/\s+/g, '-')
const fileName = (
selectedFile.split(/[/\\]/).pop() || selectedFile
).replace(/\s+/g, '-')
toast.success(t('settings:backendInstallSuccess'), {
description: `Llamacpp ${fileName} installed`,