Skip to content

Commit

Permalink
chore: add client id for lo (#2522)
Browse files Browse the repository at this point in the history
  • Loading branch information
viet-nv authored Aug 28, 2024
1 parent f36e115 commit c5c0a05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/MarketOverview/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const ContentChangable = styled.div<{ animate: boolean; up: boolean }>`
${({ animate, up }) =>
animate &&
css`
animation: ${up ? pulse : pulseRed} 1.2s;
animation: ${up ? pulse : pulseRed} 0.6s;
`}
`

Expand Down
3 changes: 3 additions & 0 deletions src/services/limitOrder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ const limitOrderApi = createApi({
url: `${LIMIT_ORDER_API_WRITE}/v1/orders`,
body,
method: 'POST',
headers: {
'x-client-id': 'kyberswap',
},
}),
transformResponse,
invalidatesTags: [RTK_QUERY_TAGS.GET_LIST_ORDERS],
Expand Down

0 comments on commit c5c0a05

Please sign in to comment.