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

Commit

Permalink
Fixed missing lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
alexflorisca authored and opr committed Sep 5, 2022
1 parent dbf479c commit 48c5bc4
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@ export const useShippingDataContext = () => {
* @param {React.ReactElement} props.children
*/
export const ShippingDataProvider = ( { children } ) => {
const { incrementCalculating, decrementCalculating } = useDispatch(
CHECKOUT_STORE_KEY
);
const { incrementCalculating, decrementCalculating } =
useDispatch( CHECKOUT_STORE_KEY );
const { shippingRates, isLoadingRates, cartErrors } = useStoreCart();
const { isSelectingRate } = useSelectShippingRate();
const { selectedRates } = useShippingData();
Expand Down

0 comments on commit 48c5bc4

Please sign in to comment.