@axiom-lattice/react-sdk 2.1.63 → 2.1.64

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/dist/index.mjs CHANGED
@@ -18286,7 +18286,7 @@ var WorkspaceContextProvider = ({
18286
18286
  );
18287
18287
  const listPathByFolder = useCallback24(
18288
18288
  async (folder) => {
18289
- const normalizedPath = folder.startsWith("/") ? folder : `/${folder}`;
18289
+ const normalizedPath = folder.startsWith("/") || folder.startsWith("~/") ? folder : `/${folder}`;
18290
18290
  return listPath(normalizedPath);
18291
18291
  },
18292
18292
  [listPath]