We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dc922b commit 63a1457Copy full SHA for 63a1457
src/App.vue
@@ -28,6 +28,12 @@ onMounted(() => {
28
authStore.refresh_token = refresh_token;
29
settingsStore.uploaded = true;
30
}
31
+
32
+ // this is because of changes made. should remove countries if they are not object. Older versions were just country codes in an array
33
+ settingsStore.countries.forEach((country, index) => {
34
+ if (typeof country === "object") return;
35
+ settingsStore.countries.splice(index, 1);
36
+ })
37
});
38
39
onMounted(async () => {
0 commit comments