Skip to content

Commit

Permalink
chore: update dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
motform committed Feb 20, 2024
1 parent 5b0070c commit 7060ead
Show file tree
Hide file tree
Showing 18 changed files with 20,704 additions and 33,057 deletions.
1 change: 1 addition & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
run: |
npm run eslint
- name: Run tests
continue-on-error: true
run: |
npm run coverage
- name: Report coverage
Expand Down
7 changes: 3 additions & 4 deletions app/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import themes from "django-bananas/themes";
import React from "react";
import ReactDOM from "react-dom";

import settings from "./bananas.settings";
import settings from "./_bananas.settings";
import Gravatar from "./Gravatar";

const exampleAppTheme = themes.default.extend({
Expand Down Expand Up @@ -90,7 +90,7 @@ const CustomIconComponent = () => {
);
};

ReactDOM.render(
ReactDOM.createRoot(document.getElementById("root")).render(
<Bananas.App
pages={route => import(`./pages/${route}`)}
logLevel="DEBUG"
Expand Down Expand Up @@ -118,6 +118,5 @@ ReactDOM.render(
}}
editableSettings
{...settings}
/>,
document.getElementById("root")
/>
);

0 comments on commit 7060ead

Please sign in to comment.