create-pb-tririga-react-app 1.0.8 → 1.0.9

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-pb-tririga-react-app",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Scaffold a TRIRIGA React app with Vite and TypeScript",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -20,7 +20,7 @@ export async function initTriAppConfig(): Promise<TriAppConfig> {
20
20
  }
21
21
 
22
22
  // Production: create config based on current location
23
- // Extract the app path from current URL like tri-dsp does
23
+ // Extract the app path from current URL
24
24
  const segments = window.location.pathname.split('/').filter(Boolean);
25
25
  let appPath = '/';
26
26
  if (segments[0] === 'app' && segments[1]) {