Skip to content

Commit

Permalink
noope
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra committed Aug 21, 2024
1 parent 82e179b commit a3bcadb
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,16 +118,15 @@ export const versionCheckerLogic = kea<versionCheckerLogicType>([
reducers({
lastCheckTimestamp: [
0,
// bumping cache key due to a change to version logic, so we want to re-check even if someone recently checked
{ persist: true, prefix: '2024-08-21' },
{ persist: true },
{
loadUsedVersionsSuccess: () => Date.now(),
},
],
versionWarning: [
null as SDKVersionWarning | null,
// bumping cache key due to a change to version logic, so we want to re-check even if someone recently checked
{ persist: true, prefix: '2024-08-21' },
// bumping cache key due to an incorrect tag being cached on 2024-02-12
{ persist: true, prefix: '2024-02-12' },
{
setVersionWarning: (_, { versionWarning }) => versionWarning,
},
Expand Down

0 comments on commit a3bcadb

Please sign in to comment.