Skip to content

Commit

Permalink
resolve changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ElinorW committed Dec 4, 2024
1 parent 8a3eb39 commit 82be809
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
"dependencies": {
"@augloop/types-core": "file:packages/types-core-2.16.189.tgz",
"@axe-core/webdriverjs": "4.10.0",
"@fluentui/react-components": "9.55.1",
"@fluentui/react-icons": "2.0.264",
"@azure/msal-browser": "3.26.1",
"@babel/core": "7.26.0",
"@babel/runtime": "7.26.0",
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/query-runner/request/RequestV9.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { makeStyles, Tab, TabList, TabValue } from '@fluentui/react-components';


interface IRequestProps {
handleOnEditorChange: ()=> void
handleOnEditorChange: () => void
sampleQuery: IQuery
}

Expand Down
4 changes: 3 additions & 1 deletion src/app/views/query-runner/request/auth/AuthV9.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ const useStyles = makeStyles({
});

export function Auth() {
const { auth: { authToken }, profile, dimensions: {request:{height}}} = useAppSelector((state) => state);
const profile = useAppSelector((state) => state.profile);
const height: string = useAppSelector((state) => state.dimensions.request.height);
const authToken = useAppSelector((state) => state.auth.authToken);
const { user } = profile;
const requestHeight = convertVhToPx(height, 60);
const [accessToken, setAccessToken] = useState<string | null>(null);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ const useStyles = makeStyles({
});

const RequestHeaders = () => {
const { sampleQuery, dimensions: { request: { height } } } = useAppSelector((state) => state);
const sampleQuery = useAppSelector((state) => state.sampleQuery);
const height = useAppSelector((state) => state.dimensions.request.height);
const [header, setHeader] = useState<IHeader>({ name: '', value: '' });
const [isUpdatingHeader, setIsUpdatingHeader] = useState(false);
const [isHoverOverHeadersList, setIsHoverOverHeadersList] = useState(false);
Expand Down

0 comments on commit 82be809

Please sign in to comment.