File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -328,7 +328,7 @@ async function requestUserData(): Promise<string> {
328
328
const token = await getToken ( ) ;
329
329
if ( ! token ) return '' ;
330
330
331
- const appDataResponse = await fetch ( 'https://accounts.httptoolkit.tech/.netlify/functions /get-app-data' , {
331
+ const appDataResponse = await fetch ( 'https://accounts.httptoolkit.tech/api /get-app-data' , {
332
332
method : 'GET' ,
333
333
headers : {
334
334
'Authorization' : `Bearer ${ token } `
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export const SubscriptionPlans = {
22
22
23
23
async function loadPlanPrices ( ) {
24
24
const response = await fetch (
25
- `https://accounts.httptoolkit.tech/.netlify/functions /get-prices?product_ids=${
25
+ `https://accounts.httptoolkit.tech/api /get-prices?product_ids=${
26
26
Object . values ( SubscriptionPlans ) . map ( plan => plan . id ) . join ( ',' )
27
27
} `
28
28
) ;
You can’t perform that action at this time.
0 commit comments