Skip to content

Commit 2b6e3c5

Browse files
committed
fix: EnvironmentOverview - initial loading state set to false
1 parent 9489bbe commit 2b6e3c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ApplicationGroup/Details/EnvironmentOverview/EnvironmentOverview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const EnvironmentOverview = ({
9393
handleSaveDescription,
9494
}: AppGroupDetailDefaultType) => {
9595
// STATES
96-
const [loading, setLoading] = useState<boolean>()
96+
const [loading, setLoading] = useState<boolean>(false)
9797
const [appListData, setAppListData] = useState<AppListDataType>()
9898
const [appStatusResponseList, setAppStatusResponseList] = useState<ManageAppsResponse[]>([])
9999
const [showHibernateStatusDrawer, setShowHibernateStatusDrawer] = useState<StatusDrawer>({

0 commit comments

Comments
 (0)