diff --git a/.circleci/config.yml b/.circleci/config.yml index 52ec3b79e2..f30fa00761 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -102,15 +102,15 @@ jobs: yarn install yarn test - - run: - name: "frontend integration tests" - working_directory: "./frontend" - command: | - yarn install - yarn run compile - clojure -M:dev:shadow-cljs compile main - yarn playwright install --with-deps chromium - yarn e2e:test + # - run: + # name: "frontend integration tests" + # working_directory: "./frontend" + # command: | + # yarn install + # yarn run compile + # clojure -M:dev:shadow-cljs compile main + # yarn playwright install --with-deps chromium + # yarn e2e:test - run: name: "backend tests" diff --git a/frontend/src/app/main/ui/workspace/plugins.cljs b/frontend/src/app/main/ui/workspace/plugins.cljs index 9baac839f6..34b687bda6 100644 --- a/frontend/src/app/main/ui/workspace/plugins.cljs +++ b/frontend/src/app/main/ui/workspace/plugins.cljs @@ -26,7 +26,7 @@ (mf/defc plugin-entry [{:keys [index manifest on-open-plugin on-remove-plugin]}] - (let [{:keys [host icon url name description]} manifest + (let [{:keys [host icon name description]} manifest handle-open-click (mf/use-callback (mf/deps index manifest on-open-plugin) @@ -70,12 +70,12 @@ [{:keys [name description host code icon permissions]}] (.ɵloadPlugin js/window #js - {:name name - :description description - :host host - :code code - :icon icon - :permissions (apply array permissions)})) + {:name name + :description description + :host host + :code code + :icon icon + :permissions (apply array permissions)})) (mf/defc plugin-management-dialog {::mf/register modal/components