|
| 1 | +import { useEffect } from 'react'; |
1 | 2 | import Modal from 'react-modal'; |
2 | 3 | import { Navigate, Route, Routes, useNavigate } from 'react-router-dom'; |
3 | 4 | import { ToastContainer } from 'react-toastify'; |
| 5 | +import { useIssues } from './api/options.ts'; |
4 | 6 | import AvailableBottles from './components/bottle/AvailableBottles.tsx'; |
5 | 7 | import BottleList from './components/bottle/BottleList.tsx'; |
6 | 8 | import CocktailList from './components/cocktail/CocktailList.tsx'; |
7 | 9 | import GettingConfiguration from './components/common/GettingConfiguration.tsx'; |
8 | 10 | import { MakerPasswordProtected, MasterPasswordProtected } from './components/common/ProtectedRoute.tsx'; |
9 | 11 | import Header from './components/Header.tsx'; |
10 | 12 | import IngredientList from './components/ingredient/IngredientList.tsx'; |
| 13 | +import IssuePage from './components/IssuePage.tsx'; |
11 | 14 | import AddonManager from './components/options/AddonManager.tsx'; |
12 | 15 | import CalibrationWindow from './components/options/CalibrationWindow.tsx'; |
13 | 16 | import ConfigWindow from './components/options/ConfigWindow.tsx'; |
14 | 17 | import DataWindow from './components/options/DataWindow.tsx'; |
15 | 18 | import LogWindow from './components/options/LogWindow.tsx'; |
16 | 19 | import OptionWindow from './components/options/OptionWindow.tsx'; |
| 20 | +import TimeManager from './components/options/TimeManager.tsx'; |
17 | 21 | import WifiManager from './components/options/WifiManager.tsx'; |
18 | 22 | import RecipeList from './components/recipe/RecipeList.tsx'; |
19 | 23 | import { useConfig } from './ConfigProvider.tsx'; |
20 | 24 | import useAxiosInterceptors from './hooks/useAxiosInterceptors.ts'; |
21 | | -import { useIssues } from './api/options.ts'; |
22 | | -import { useEffect } from 'react'; |
23 | | -import IssuePage from './components/IssuePage.tsx'; |
24 | | -import TimeManager from './components/options/TimeManager.tsx'; |
25 | 25 | import { hastNotIgnoredStartupIssues } from './utils.tsx'; |
26 | 26 |
|
27 | 27 | Modal.setAppElement('#root'); |
|
0 commit comments