Skip to content

Commit e543e20

Browse files
fix: filter in unatuh apps
1 parent eeeaf2f commit e543e20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ApplicationGroup/CreateAppGroup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export default function CreateAppGroup({
163163
? _unauthorizedAppList.push({ id: app.id, appName: app.appName })
164164
: _authorizedAppList.push({ id: app.id, appName: app.appName })
165165
})
166-
_unauthorizedAppList.filter(
166+
_unauthorizedAppList = _unauthorizedAppList.filter(
167167
(app) =>
168168
selectedAppsMap[app.id] && (!selectedAppSearchText || app.appName.indexOf(selectedAppSearchText) >= 0),
169169
)

0 commit comments

Comments
 (0)