Change No Incident Look & Remove Dept Fields from data

This commit is contained in:
Matt DiMeglio 2025-04-21 01:41:40 -04:00
parent 5ad7ef9d1a
commit bc9878053d
2 changed files with 9 additions and 7 deletions

View file

@ -277,7 +277,15 @@ export default function Incidents() {
</TouchableOpacity> </TouchableOpacity>
) )
})) : ( })) : (
<Text>There are no Calls</Text> <View style={{
marginTop: '50%',
flexDirection: 'column',
alignItems: 'center',
justifyContent: 'flex-end',
}}>
<Ionicons name="warning-outline" size={100} color='orange' />
<Text style={{ fontSize: 25 }}>There are no Incidents</Text>
</View>
) } ) }
</View> </View>
</ScrollView> </ScrollView>

View file

@ -31,8 +31,6 @@ const accountDetails = {
'Darien EMS Supv' 'Darien EMS Supv'
], ],
deptAbv: 'DEMS', deptAbv: 'DEMS',
rank: 'Assistant Director',
rankAbv: 'Asst. Director',
type: 'EMS', type: 'EMS',
primary: true, primary: true,
selected: true, selected: true,
@ -44,8 +42,6 @@ const accountDetails = {
deptId: 1, deptId: 1,
dept: 'Noroton Fire Department', dept: 'Noroton Fire Department',
deptAbv: 'NFD', deptAbv: 'NFD',
rank: 'Lieutenant',
rankAbv: 'Lt.',
type: 'Fire', type: 'Fire',
primary: false, primary: false,
selected: false, selected: false,
@ -57,8 +53,6 @@ const accountDetails = {
deptId: 2, deptId: 2,
dept: 'Stamford Fire Department', dept: 'Stamford Fire Department',
deptAbv: 'SFD', deptAbv: 'SFD',
rank: 'Paramedic',
rankAbv: 'EMT-P',
type: 'Rescue', type: 'Rescue',
primary: false, primary: false,
selected: false, selected: false,