feat: implemented error state for backend socket connection and other failures

This commit is contained in:
asifrahaman13 2024-06-13 07:11:02 +05:30
parent 476303f52b
commit 1ab01129a9
7 changed files with 10880 additions and 912 deletions

View file

@ -53,7 +53,7 @@ const ThemeSwitcher = ({ className }: { className?: string }) => {
onChange={(e) => handleThemeSwitch(e.target.value as Theme)}
options={[
{ value: 'light', label: 'Light' },
{ value: 'dark', label: 'Dark' }
{ value: 'dark', label: 'Dark' },
]}
/>
);