Skip to content

Commit 6401a5b

Browse files
committed
Update App.jsx
1 parent fbafb4a commit 6401a5b

File tree

1 file changed

+1
-1
lines changed
  • demos/grid/localizations/src

1 file changed

+1
-1
lines changed

demos/grid/localizations/src/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ const Demo = () => {
547547
try {
548548
if (locale !== "en") {
549549
// Dynamically fetch locale JSON for grid localization
550-
const response = await fetch(`../../../source/locales/${locale}/grid.json`);
550+
const response = await fetch(`assets/locales/${locale}/grid.json`);
551551
if (!response.ok) throw new Error(`HTTP error ${response.status}`);
552552
const localeData = await response.json();
553553
grid.setLocale(locale, localeData);

0 commit comments

Comments
 (0)