Skip to content

Commit

Permalink
Add AI signal generation
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafasaifee42 committed May 11, 2024
1 parent efb470e commit d4f1b0b
Show file tree
Hide file tree
Showing 4 changed files with 198 additions and 99 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import axios, { AxiosError, AxiosResponse } from 'axios';
import { useEffect, useReducer, useMemo, useState } from 'react';
import { Footer } from './Components/FooterEl';
import { SignUpButton } from './Components/SignUpButton';
import { API_ACCESS_TOKEN, CHOICES } from './Constants';
import { API_ACCESS_TOKEN, CHOICES, CLIENT_ID } from './Constants';
import Context from './Context/Context';
import Reducer from './Context/Reducer';
import MainBody from './MainBody';
Expand Down Expand Up @@ -128,7 +128,7 @@ function App() {
useEffect(() => {
if (isAuthenticated) {
const accessTokenRequest = {
scopes: ['user.read'],
scopes: [`${CLIENT_ID}/.default`],
account: accounts[0],
};
instance
Expand Down
Loading

0 comments on commit d4f1b0b

Please sign in to comment.