Skip to content

Commit 2677071

Browse files
committed
finish styles off
1 parent f5cf09b commit 2677071

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/components/SpendRules/SpendRulesSection.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,11 @@ function SpendRulesSection({policyID}: SpendRulesSectionProps) {
148148
inputValue={inputValue}
149149
onChangeText={setInputValue}
150150
shouldShowEmptyState={!isLoadingCardRules && filteredCardRules.length === 0}
151+
style={[styles.mb0, styles.mt5, styles.mh0]}
151152
/>
152153
)}
153154
<MenuItem
154-
wrapperStyle={[styles.borderedContentCard, styles.mt6, styles.ph4, styles.pv4]}
155+
wrapperStyle={[styles.borderedContentCard, styles.mt5, styles.ph4, styles.pv4]}
155156
titleComponent={menuItemBody}
156157
accessibilityLabel={`${descriptionLabel}. ${blockLabel} ${defaultRuleTitle}`}
157158
sentryLabel={CONST.SENTRY_LABEL.WORKSPACE.RULES.SPEND_RULE_ITEM}
@@ -170,7 +171,7 @@ function SpendRulesSection({policyID}: SpendRulesSectionProps) {
170171
/>
171172
</View>
172173
) : (
173-
cardRules.map((rule) => (
174+
filteredCardRules.map((rule) => (
174175
<OfflineWithFeedback
175176
key={rule.ruleID}
176177
pendingAction={rule.pendingAction}

0 commit comments

Comments
 (0)