Skip to content

Commit

Permalink
fixup! geturl
Browse files Browse the repository at this point in the history
  • Loading branch information
zmc committed Oct 1, 2024
1 parent f4c359e commit aa35233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/paddles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async function queryFn (params: QueryOptions) {
}

function getURL(endpoint: string, params?: Record<string, string>) {
const url = new URL(endpoint,PADDLES_SERVER);
const url = new URL(endpoint, PADDLES_SERVER);
let uri = endpoint;
Object.entries(params).forEach((entry) => {
const [key, value] = entry;
Expand Down

0 comments on commit aa35233

Please sign in to comment.