From 05774ee117299bcda7341a2a7556c9c70f310acf Mon Sep 17 00:00:00 2001 From: 2ManyProjects Date: Sat, 26 Apr 2025 19:52:18 -0500 Subject: [PATCH] fixing stripe context --- frontend/src/context/StripeContext.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/context/StripeContext.jsx b/frontend/src/context/StripeContext.jsx index 72bce9d..5f3f5a9 100644 --- a/frontend/src/context/StripeContext.jsx +++ b/frontend/src/context/StripeContext.jsx @@ -2,7 +2,7 @@ import React, { createContext, useContext, useEffect, useState } from 'react'; import { loadStripe } from '@stripe/stripe-js'; import { Elements } from '@stripe/react-stripe-js'; import config from '../config'; -import apiClient from '@services'; +import apiClient from '@services/api'; // Create the context const StripeContext = createContext();