Skip to content

Commit

Permalink
chore: remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
maxiroellplenty committed Nov 6, 2024
1 parent 08953c8 commit 3681c01
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions apps/web/components/LoginComponent/LoginComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,27 +29,16 @@
</template>

<script lang="ts" setup>
import { AddressType } from '@plentymarkets/shop-api';
import { SfLink, SfInput, SfLoaderCircular } from '@storefront-ui/vue';
import type { LoginProps } from './types';
const { getAddresses: getBillingAddresses } = useAddress(AddressType.Billing);
const { getAddresses: getShippingAddresses } = useAddress(AddressType.Shipping);
const { getShippingMethods } = useCartShippingMethods();
const { login, loading, getSession } = useCustomer();
const { send } = useNotification();
const { t } = useI18n();
const { isSoftLogin = false, isModal = false } = defineProps<LoginProps>();
const emits = defineEmits(['loggedIn', 'change-view']);
const loadAddresses = async () => {
await getBillingAddresses();
await getShippingAddresses();
await getShippingMethods();
};
const email = ref('');
const password = ref('');
Expand Down

0 comments on commit 3681c01

Please sign in to comment.