microboard-ui-temp 0.1.22 → 0.1.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +10 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -446481,10 +446481,19 @@ function generateComparisonPlaywrightCode(oldSnapshot) {
446481
446481
  // src/App/App.ts
446482
446482
  var LAST_BOARD_KEY = "lastSeenBoard";
446483
446483
  var LAST_BOARD_KEY_QS = LAST_BOARD_KEY.concat("Wqs");
446484
+ function getI18n3() {
446485
+ const i18nInstance2 = getConfiguredI18n();
446486
+ return i18nInstance2 || {
446487
+ t: (key2) => {
446488
+ console.log("Using fallback i18n for key:", key2);
446489
+ return key2;
446490
+ }
446491
+ };
446492
+ }
446484
446493
  function createApp(isHistory = true) {
446485
446494
  const connection = createConnection(getBoard2, getAccount3, getStorage);
446486
446495
  conf.connection = connection;
446487
- conf.i18n = instance2;
446496
+ conf.i18n = getI18n3();
446488
446497
  const clipboard = new Clipboard;
446489
446498
  const location3 = new Location;
446490
446499
  const storage2 = new Storage;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microboard-ui-temp",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "type": "module",