Skip to content

Commit f88b784

Browse files
fix(agentic-cli): remove dashboard bottom inset
1 parent ae43956 commit f88b784

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • app/components/Views/AgenticCliDashboardWebview

app/components/Views/AgenticCliDashboardWebview/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { useCallback, useEffect, useRef, useState } from 'react';
2-
import { Linking } from 'react-native';
2+
import { Linking, View } from 'react-native';
33
import { SafeAreaView } from 'react-native-safe-area-context';
44
import { useNavigation } from '@react-navigation/native';
55
import { WebView, WebViewMessageEvent } from '@metamask/react-native-webview';
@@ -279,7 +279,7 @@ const AgenticCliDashboardWebview: React.FC = () => {
279279
}
280280

281281
return (
282-
<SafeAreaView edges={['bottom']} style={tw.style('flex-1 bg-default')}>
282+
<View style={tw.style('flex-1 bg-default')}>
283283
<WebView
284284
ref={webViewRef}
285285
source={{
@@ -295,7 +295,7 @@ const AgenticCliDashboardWebview: React.FC = () => {
295295
style={tw.style('flex-1 bg-default')}
296296
androidLayerType="hardware"
297297
/>
298-
</SafeAreaView>
298+
</View>
299299
);
300300
};
301301

0 commit comments

Comments
 (0)