Skip to content

Commit be62007

Browse files
committed
fix(lib): forgot billy cilik as production ready for activation
1 parent 384d7b4 commit be62007

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/libs/activate-bfb.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ async function activateBfb(readlineInterface: readline.Interface): Promise<void>
1616
readlineInterface.resume();
1717
}
1818

19-
const res = await fetch('http://localhost:3000/api/v1/check', {
19+
const res = await fetch('https://bfb.blackfriday.my.id/api/v1/check', {
2020
method: 'GET',
2121
headers: {
2222
Authorization: `Bearer ${token}`,

src/libs/check-activation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async function checkActivation(): Promise<boolean> {
3232
const token = decrypted.toString('utf-8');
3333
if (!token) return false;
3434

35-
const res = await fetch('http://localhost:3000/api/v1/check', {
35+
const res = await fetch('https://bfb.blackfriday.my.id/api/v1/check', {
3636
method: 'GET',
3737
headers: {
3838
Authorization: `Bearer ${token}`,

0 commit comments

Comments
 (0)