From b792a204fad1e3cac07306d389ed90b6f51e04bc Mon Sep 17 00:00:00 2001 From: Made Baruna Date: Tue, 28 Dec 2021 17:10:29 +0700 Subject: [PATCH] Add file type error on excel import --- src/routes/wish/_excelImport.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/wish/_excelImport.svelte b/src/routes/wish/_excelImport.svelte index 30aaf787..bacc4537 100644 --- a/src/routes/wish/_excelImport.svelte +++ b/src/routes/wish/_excelImport.svelte @@ -557,7 +557,7 @@ ) { readCSV(file); } else { - pushToast($t('wish.excel.errorInvalidFile'), 'error'); + pushToast($t('wish.excel.errorInvalidFile') + ` [${file.type}]`, 'error'); } }