Skip to content

Commit e99f906

Browse files
committed
File exports can now be imported
1 parent 624fb0e commit e99f906

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/profiles-modals/ImportProfileModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ watch(store.state.tsMods.mods, async() => {
102102
async function onFileOrCodeSelect(mode: 'FILE' | 'CODE') {
103103
if (mode === 'FILE') {
104104
activeStep.value = 'IMPORT_FILE';
105-
process.nextTick(async () => {
105+
Promise.resolve().then(async () => {
106106
const files = await InteractionProvider.instance.selectFile({
107107
title: 'Import Profile',
108108
filters: [{

0 commit comments

Comments
 (0)