Skip to content

Commit

Permalink
refactor: remove implicit any for userAddresses
Browse files Browse the repository at this point in the history
M2-649
  • Loading branch information
sethidden committed May 31, 2022
1 parent edc8104 commit 7d2b733
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export default defineComponent({
const context = useContext();
const router = useRouter();
const userAddresses = ref([]);
const userAddresses = ref<CustomerAddress[]>([]);
const { load, remove } = useAddresses();
const { fetch } = useFetch(async () => {
const addressesData = await load();
Expand Down

0 comments on commit 7d2b733

Please sign in to comment.