Skip to content

Commit 4e7a1de

Browse files
committed
change template string
1 parent 70ce8cd commit 4e7a1de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/api/pagination/cursor-request/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const https = require('https')
33
const options = {
44
hostname: 'api.paystack.co',
55
port: 443,
6-
path: `/transaction?use_cursor=true&perPage=50`,
6+
path: '/transaction?use_cursor=true&perPage=50',
77
method: 'GET',
88
headers: {
99
Authorization: 'Bearer YOUR_SECRET_KEY'

src/api/pagination/offset-request/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const https = require('https')
33
const options = {
44
hostname: 'api.paystack.co',
55
port: 443,
6-
path: `/transaction?page=1&perPage=50`,
6+
path: '/transaction?page=1&perPage=50',
77
method: 'GET',
88
headers: {
99
Authorization: 'Bearer SECRET_KEY'

0 commit comments

Comments
 (0)