Skip to content

Commit f73162f

Browse files
Fix more lint issues
1 parent 89a8314 commit f73162f

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

AgentforceSDK-ReactNative-Bridge/src/services/AgentforceService.ts

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,20 @@ const EVENTS = {
4949
/**
5050
* Valid context variable types for runtime validation
5151
*/
52-
const VALID_CONTEXT_TYPES: Set<AgentforceContextVariableType> = new Set<AgentforceContextVariableType>([
53-
'Text',
54-
'Number',
55-
'Boolean',
56-
'Date',
57-
'DateTime',
58-
'Json',
59-
'List',
60-
'Money',
61-
'Object',
62-
'Ref',
63-
'Variable',
64-
]);
52+
const VALID_CONTEXT_TYPES: Set<AgentforceContextVariableType> =
53+
new Set<AgentforceContextVariableType>([
54+
'Text',
55+
'Number',
56+
'Boolean',
57+
'Date',
58+
'DateTime',
59+
'Json',
60+
'List',
61+
'Money',
62+
'Object',
63+
'Ref',
64+
'Variable',
65+
]);
6566

6667
/**
6768
* Service class for interacting with native Agentforce SDK.

src/screens/FeatureFlagsScreen.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import React, { useEffect } from 'react';
66
import type { NativeStackScreenProps } from '@react-navigation/native-stack';
77
import type { RootStackParamList } from '../../App';
88

9-
109
type Props = NativeStackScreenProps<RootStackParamList, 'FeatureFlags'>;
1110

1211
/**

src/screens/SettingsScreen.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ const FLAG_HINTS: Record<keyof FeatureFlags, string> = {
7474
enableCustomViewProvider: 'Override SDK output views with React Native components',
7575
};
7676

77-
7877
type SettingsScreenProps = NativeStackScreenProps<RootStackParamList, 'Settings'>;
7978

8079
const SettingsScreen: React.FC<SettingsScreenProps> = ({ navigation, route }) => {

0 commit comments

Comments
 (0)