Skip to content

Commit

Permalink
hardcode stg ks-setting
Browse files Browse the repository at this point in the history
c
  • Loading branch information
nguyenhoaidanh committed Jul 4, 2023
1 parent e4679fb commit 6e0eadd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/notification.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react'

import { KS_SETTING_API, NOTIFICATION_API } from 'constants/env'
import { NOTIFICATION_API } from 'constants/env'
import { Topic } from 'hooks/useNotification'

const NotificationApi = createApi({
Expand All @@ -12,7 +12,7 @@ const NotificationApi = createApi({
string | null | undefined
>({
query: walletAddress => ({
url: `${KS_SETTING_API}/v1/topic-groups`,
url: `${'https://ks-setting.stg.kyberengineering.io/api'}/v1/topic-groups`,
params: walletAddress ? { walletAddress } : {},
}),
transformResponse: (data: any) => data?.data,
Expand Down

0 comments on commit 6e0eadd

Please sign in to comment.