removing unused method

This commit is contained in:
Michaela Brydon 2024-07-30 12:30:44 -04:00
parent 9f6c83db74
commit eb3f817847
2 changed files with 0 additions and 6 deletions

View file

@ -198,8 +198,6 @@ describe('vehicle-lookup.vue', () => {
answersFromCms: vinLookupMethodsMockData.Answers
});
useMainStore().updateVehicleVin = jest.fn();
const lookupByManualVinOptionLabel = wrapper
.find('[data-test-id="vin-lookup-methods-button-question"] label[for="VinLookupMethods-ManualVin"]');
await lookupByManualVinOptionLabel.trigger('mousedown');

View file

@ -1748,10 +1748,6 @@ export const useMainStore = defineStore({
this.order.originalDeductible = coverage.deductible;
this.order.currentDeductible = coverage.deductible;
},
// TODO do we need to reset vehicle info when this is called?
updateVehicleVin(vin) {
this.order.vehicle.vin = vin;
},
resetOrder() {
this.order.referralNumber = null;