Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit c4331ad

Browse files
committed
fixed merge bugs
1 parent c4c8525 commit c4331ad

File tree

1 file changed

+2
-2
lines changed
  • webapp_frontend/src/components

1 file changed

+2
-2
lines changed

webapp_frontend/src/components/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, {ReactElement, useEffect, useState} from 'react';
1+
import React, {ReactElement} from 'react';
22
import './App.css';
33
import {Container} from 'react-bootstrap';
44
import Header from "./basicElements/Header";
@@ -11,7 +11,6 @@ import PermanentAssets from "./basicElements/PermanentAssets";
1111
import {connect, ConnectedProps} from 'react-redux'
1212
import {addAccessToken, addRefreshToken} from "../background/redux/actions/tokens";
1313
import {SystemState} from "../background/redux/actions/sytemState";
14-
import {Button} from "react-bootstrap";
1514

1615

1716
// this takes the redux store and maps everything that is needed to the function props
@@ -34,6 +33,7 @@ type Props = PropsFromRedux & {}
3433
function App(props: Props): ReactElement {
3534

3635

36+
console.log("[App] props.tokens: ")
3737
console.log(props.tokens.refreshToken)
3838
console.log(props.tokens)
3939

0 commit comments

Comments
 (0)