Skip to content

Commit 92a3867

Browse files
Fix inverter tab
1 parent e628e75 commit 92a3867

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/views/navigation/tabs/InverterListTab.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ import { useTheme } from 'react-native-paper';
55
import DeviceOfflineWrapper from '@/components/DeviceOfflineWrapper';
66
import InverterList from '@/components/inverters/InverterList';
77

8-
import { StyledScrollView } from '@/style';
8+
import { StyledView } from '@/style';
99

1010
const InverterListTab: FC = () => {
1111
const theme = useTheme();
1212

1313
return (
14-
<StyledScrollView theme={theme}>
14+
<StyledView theme={theme}>
1515
<DeviceOfflineWrapper>
1616
<Box style={{ flex: 1, justifyContent: 'flex-start', width: '100%' }}>
1717
<InverterList />
1818
</Box>
1919
</DeviceOfflineWrapper>
20-
</StyledScrollView>
20+
</StyledView>
2121
);
2222
};
2323

0 commit comments

Comments
 (0)