Skip to content

Commit

Permalink
fix: copy styles (#953)
Browse files Browse the repository at this point in the history
  • Loading branch information
mscolnick committed Mar 14, 2024
1 parent 07e6ae5 commit 2fef685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/plugins/core/registerReactComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ function shouldCopyStyleSheet(sheet: CSSStyleSheet): boolean {
return sheet.href.startsWith(getStaticNotebookAssetUrl());
}

if (sheet.href.startsWith("https://cdn.jsdelivr.net/npm/@marimo-team/")) {
if (sheet.href.includes("@marimo-team/frontend")) {
return true;
}

Expand Down

0 comments on commit 2fef685

Please sign in to comment.