This commit is contained in:
Timothy Jaeryang Baek 2025-04-08 12:51:48 -07:00
parent 60d11c1f6f
commit 63eab42208

View File

@ -15,7 +15,7 @@
let selectedTools = [];
$: selectedTools = $tools.filter((tool) => selectedToolIds.includes(tool.id));
$: selectedTools = ($tools ?? []).filter((tool) => selectedToolIds.includes(tool.id));
const i18n = getContext('i18n');
</script>