@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.js CHANGED
@@ -18155,7 +18155,7 @@ var WorkspaceContextProvider = ({
18155
18155
  );
18156
18156
  const listPathByFolder = (0, import_react56.useCallback)(
18157
18157
  async (folder) => {
18158
- const normalizedPath = folder.startsWith("/") ? folder : `/${folder}`;
18158
+ const normalizedPath = folder.startsWith("/") || folder.startsWith("~/") ? folder : `/${folder}`;
18159
18159
  return listPath(normalizedPath);
18160
18160
  },
18161
18161
  [listPath]