Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/common/routing/RouteDefs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import {
Testimonials
} from 'common';
import PlayList from 'common/playlists/PlayList';
import BackToTop from 'common/components/BackToTop';
import { BrowserRouter, Route, Routes } from 'react-router-dom';
import { NhostClient, NhostReactProvider } from '@nhost/react';
import BadgesDashboard from 'common/badges-dashboard';
Expand Down
2 changes: 1 addition & 1 deletion src/plays/pomodoro-timer/PomodoroTimer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import TimerDisplay from './components/TimerDisplay';
import TimerControls from './components/TimerControls';
import SessionSelector from './components/SessionSelector';

import { usePomodoroTimer, SessionType } from './hooks/usePomodoroTimer';
import { usePomodoroTimer } from './hooks/usePomodoroTimer';

import './styles.css';

Expand Down
4 changes: 1 addition & 3 deletions src/plays/text-avatar/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ export type ActionRequestReturnType = ActionReturnType<undefined>;
export type ActionFailureReturnType = ActionReturnType<any>;

export type ActionsReturnType =
| ActionRequestReturnType
| ActionSuccessReturnType
| ActionFailureReturnType;
ActionRequestReturnType | ActionSuccessReturnType | ActionFailureReturnType;

// eslint-disable-next-line @typescript-eslint/no-explicit-any
export type Arguments = {
Expand Down
Loading