Skip to content

Commit 569a282

Browse files
committed
fix(grades): also show completed grades in search results
1 parent c8e3c17 commit 569a282

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/(screens)/grades.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export default function GradesSCreen(): React.JSX.Element {
220220
)}
221221
{isSuccess && grades !== null && (
222222
<>
223-
{filteredGrades?.finished.length !== 0 && localSearch === '' && (
223+
{filteredGrades?.finished.length !== 0 && (
224224
<>
225225
<SectionView title={t('grades.average')}>
226226
<View style={styles.loadedContainer}>

0 commit comments

Comments
 (0)