aboutsummaryrefslogtreecommitdiffstats
path: root/packages/renderer/src/components/sidebar/ServiceIcon.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/renderer/src/components/sidebar/ServiceIcon.tsx')
-rw-r--r--packages/renderer/src/components/sidebar/ServiceIcon.tsx7
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/renderer/src/components/sidebar/ServiceIcon.tsx b/packages/renderer/src/components/sidebar/ServiceIcon.tsx
index 1017be9..7a6d58a 100644
--- a/packages/renderer/src/components/sidebar/ServiceIcon.tsx
+++ b/packages/renderer/src/components/sidebar/ServiceIcon.tsx
@@ -20,7 +20,7 @@
20 20
21import IconWarning from '@mui/icons-material/Warning'; 21import IconWarning from '@mui/icons-material/Warning';
22import Badge from '@mui/material/Badge'; 22import Badge from '@mui/material/Badge';
23import { styled, useTheme } from '@mui/material/styles'; 23import { styled } from '@mui/material/styles';
24import { observer } from 'mobx-react-lite'; 24import { observer } from 'mobx-react-lite';
25import React, { useEffect, useState } from 'react'; 25import React, { useEffect, useState } from 'react';
26 26
@@ -89,7 +89,6 @@ const ServiceIconErrorBadge = styled(ServiceIconBadgeBase, {
89})); 89}));
90 90
91function ServiceIcon({ service }: { service: Service }): JSX.Element { 91function ServiceIcon({ service }: { service: Service }): JSX.Element {
92 const { direction } = useTheme();
93 const { 92 const {
94 settings: { name }, 93 settings: { name },
95 directMessageCount, 94 directMessageCount,
@@ -114,7 +113,7 @@ function ServiceIcon({ service }: { service: Service }): JSX.Element {
114 badgeContent={hasError ? <IconWarning fontSize="small" /> : 0} 113 badgeContent={hasError ? <IconWarning fontSize="small" /> : 0}
115 anchorOrigin={{ 114 anchorOrigin={{
116 vertical: 'bottom', 115 vertical: 'bottom',
117 horizontal: direction === 'ltr' ? 'right' : 'left', 116 horizontal: 'right',
118 }} 117 }}
119 > 118 >
120 <ServiceIconBadge 119 <ServiceIconBadge
@@ -125,7 +124,7 @@ function ServiceIcon({ service }: { service: Service }): JSX.Element {
125 color="error" 124 color="error"
126 anchorOrigin={{ 125 anchorOrigin={{
127 vertical: 'top', 126 vertical: 'top',
128 horizontal: direction === 'ltr' ? 'right' : 'left', 127 horizontal: 'right',
129 }} 128 }}
130 > 129 >
131 <ServiceIconRoot hasError={hasError}> 130 <ServiceIconRoot hasError={hasError}>