fix:#30 format, lint and fixed types

This commit is contained in:
Elmar Kresse
2024-02-23 02:50:01 +01:00
parent b4caa9e94b
commit 27b1b591cc
5 changed files with 38 additions and 30 deletions

View File

@@ -37,7 +37,9 @@ const columns = computed(() => [
const toast = useToast();
async function finalStep() {
const createFeed: Promise<string>= createIndividualFeed(store.getAllModules());
const createFeed: Promise<string> = createIndividualFeed(
store.getAllModules(),
);
// Check if createFeed Promise is resolved
createFeed.then(async (token: string) => {