Skip to content

Commit bd91f85

Browse files
committed
fix final flow errors
1 parent 155f9dc commit bd91f85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/views/sis/balances.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {StyleSheet, ScrollView, View, Text, RefreshControl} from 'react-native'
99
import {TabBarIcon} from '../components/tabbar-icon'
1010
import {connect} from 'react-redux'
1111
import {Cell, TableView, Section} from 'react-native-tableview-simple'
12-
import type {LoginStateType} from '../../../flux/parts/settings'
12+
import type {LoginStateType} from '../../flux/parts/settings'
1313

1414
import {updateBalances} from '../../flux/parts/sis'
1515

@@ -124,7 +124,7 @@ class BalancesView extends React.Component {
124124

125125
{this.props.loginState !== 'logged-in' || this.props.message
126126
? <Section footer="You'll need to log in again so we can update these numbers.">
127-
{!this.props.credentialsValid
127+
{this.props.loginState !== 'logged-in'
128128
? <Cell
129129
cellStyle="Basic"
130130
title="Log in with St. Olaf"

0 commit comments

Comments
 (0)