Skip to content

Commit

Permalink
Correct linter
Browse files Browse the repository at this point in the history
  • Loading branch information
bgelatti committed Oct 8, 2024
1 parent bd19bd9 commit b05aa0f
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/tcore-api/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { getMainSettings } from "./Services/Settings";
import HardwareController from "./Controllers/Hardware";
import { setupSocketServer } from "./Socket/SocketServer";
import { shutdown } from "./Helpers/shutdown";
import { getAllInsidePlugins, getAllPluginList, getModuleList } from "./Services/Plugins";
import { getModuleList } from "./Services/Plugins";
import { startCallbackInterval } from "./Plugins/Worker/Worker";
import { startActionScheduleTimer } from "./Services/ActionScheduler";
import { logSystemStart, oraLog, oraLogError } from "./Helpers/log";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { IPluginList } from "@tago-io/tcore-sdk/types";
import { observer } from "mobx-react";
import { useCallback, useEffect, useState } from "react";
import { PLUGIN_STORE_PLUGIN_ID, SQLITE_PLUGIN_ID } from "@tago-io/tcore-shared";
import { SQLITE_PLUGIN_ID } from "@tago-io/tcore-shared";
import {
Button,
EButton,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { EIcon, EmptyMessage, Loading, useApiRequest } from "../../..";
import store from "../../../System/Store";
import ModalMasterPassword from "../../Plugins/Common/ModalMasterPassword/ModalMasterPassword";
import SetupForm from "../SetupForm/SetupForm";
import StepDatabaseNoStore from "../StepDatabaseNoStore/StepDatabaseNoStore";
import StepDatabaseWithStore from "../StepDatabaseWithStore/StepDatabaseWithStore";

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { useCallback, useEffect, useMemo, useState } from "react";
import axios from "axios";
import { useHistory } from "react-router";
import useApiRequest from "../../../../Helpers/useApiRequest";
import Publisher from "../../../Plugins/Common/Publisher/Publisher";
import Button from "../../../Button/Button";
Expand All @@ -11,7 +12,6 @@ import PluginImage from "../../../PluginImage/PluginImage";
import { getLocalStorage } from "../../../../Helpers/localStorage";
import store from "../../../../System/Store";
import * as Style from "./Banner.style";
import { useHistory } from "react-router";

/**
* Props.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import axios from "axios";
import { useEffect, useState } from "react";
import Screenshots from "../Screenshots/Screenshots";
import Loading from "../../../Loading/Loading";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ function PluginStore() {
* Renders a single plugin card.
*/
const renderPlugin = (plugin: any) => {

return (
<Card
description={plugin.short_description}
Expand Down

0 comments on commit b05aa0f

Please sign in to comment.