Skip to content

Commit

Permalink
Fix order.
Browse files Browse the repository at this point in the history
  • Loading branch information
tdilauro committed Jun 10, 2024
1 parent 04e2281 commit a307562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class CirculationAdmin {
const div = document.createElement("div");
div.id = "opds-catalog";
div.className = "palace";
config.featureFlags = { ...config.featureFlags, ...defaultFeatureFlags };
config.featureFlags = { ...defaultFeatureFlags, ...config.featureFlags };
document.getElementsByTagName("body")[0].appendChild(div);

const catalogEditorPath =
Expand Down

0 comments on commit a307562

Please sign in to comment.