Skip to content

Commit

Permalink
docs: fix compat table samples theming (#9765)
Browse files Browse the repository at this point in the history
  • Loading branch information
pskelin authored Aug 28, 2024
1 parent 49343b7 commit c3d190c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/website/src/components/Editor/playground-support.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const loadThemePropertiesCompat = async (themeName) => {
}
};
const loadAndCheckCompat = async (themeName) => {
const data = await loadThemePropertiesFiori(themeName);
const data = await loadThemePropertiesCompat(themeName);
if (typeof data === "string" && data.endsWith(".json")) {
throw new Error("error");
}
Expand Down Expand Up @@ -189,4 +189,4 @@ window.addEventListener("message", async (event) => {
setContentDensity(contentDensity);
setDirection(textDirection);
});
`
`

0 comments on commit c3d190c

Please sign in to comment.