We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f44db47 commit fdb3c3aCopy full SHA for fdb3c3a
force-app/main/default/pages/OrgCheck_App_VFP.page
@@ -37,6 +37,15 @@
37
</div>
38
39
<script>
40
+ /* Reset the cache of previous versions */
41
+ try {
42
+ Object.keys(localStorage)
43
+ .filter(e => e.startsWith('OrgCheck.'))
44
+ .forEach(e => localStorage.removeItem(e));
45
+ } catch (e) {
46
+ console.error('Error while resetting the cache of previous Org Check versions (prior to Lithium).')
47
+ }
48
+ /* Insert LWC app */
49
$Lightning.use('orgcheck:OrgCheck_App_Aura', function() {
50
$Lightning.createComponent('orgcheck:orgcheckApp',
51
{
0 commit comments