Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #303 from tiki/fix/email-providers-are-listed-in-d…
Browse files Browse the repository at this point in the history
…ropdown

fix: email providers removed from the dropdown
  • Loading branch information
mike-audi authored Oct 9, 2023
2 parents e82f23d + dc414ca commit b44a20f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/sheet/sheet-add-retailer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ import {
type AccountType,
accountTypes,
GMAIL,
AOL,
YAHOO,
OUTLOOK
} from "@mytiki/capture-receipt-capacitor";
import { ref, inject, computed } from "vue";
import { type Capture } from "@/service";
Expand All @@ -26,6 +29,9 @@ const capture: Capture = inject(InjectKey.capture)!;
const filtered = accountTypes.index;
capture.accounts.forEach((account) => filtered.delete(account.type.id));
filtered.delete(GMAIL.id);
filtered.delete(AOL.id);
filtered.delete(YAHOO.id);
filtered.delete(OUTLOOK.id);

const form = ref<Account>({
username: "",
Expand Down

0 comments on commit b44a20f

Please sign in to comment.