From 2a62de505e14f64a4df77bf06347bb1b67a16076 Mon Sep 17 00:00:00 2001 From: Kyrylo Shmidt Date: Tue, 4 Jun 2024 12:24:59 +0200 Subject: [PATCH] Change environment clear data timestamp persistence scope to application level --- src/components/RecentActivity/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/RecentActivity/index.tsx b/src/components/RecentActivity/index.tsx index 584b7282..664c402b 100644 --- a/src/components/RecentActivity/index.tsx +++ b/src/components/RecentActivity/index.tsx @@ -99,7 +99,7 @@ export const RecentActivity = (props: RecentActivityProps) => { setPersistedEnvironmentClearDataTimestamps ] = usePersistence( ENVIRONMENT_CLEAR_DATA_TIMESTAMP_PERSISTENCE_KEY, - "project" + "application" ); const config = useContext(ConfigContext);