Fix ios cache (#7412)

* Fix Keychain cache

* Fix

* Fix import
This commit is contained in:
Daniel Espino García
2023-07-05 20:01:51 +02:00
committed by GitHub
parent 54e7bd81d5
commit 5ab2f86b66
6 changed files with 23 additions and 0 deletions

View File

@@ -64,3 +64,7 @@ export const deleteEntititesFile = (callback?: (success: boolean) => void) => {
callback(true);
}
};
export const invalidateKeychainCache = (serverUrl: string) => {
MattermostManaged.invalidateKeychainCache(serverUrl);
};