From e82666d014672a70ef23fc102a7be9a7bcf3a6f0 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Wed, 20 May 2026 18:23:12 +0000 Subject: [PATCH] Changes Co-authored-by: Reifonas <211114984+Reifonas@users.noreply.github.com> --- src/pages/Index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index 35e8216..4b8e652 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -61,6 +61,7 @@ const Index = () => { } const url = URL.createObjectURL(file); addModel({ fileName: file.name, fileSize: file.size, url }); + addRecentFile(file.name, file).catch(() => {}); toast.success(`Modelo "${file.name}" carregado com sucesso!`); return; }