Skip to content

Commit

Permalink
39 removing the deployment details
Browse files Browse the repository at this point in the history
  • Loading branch information
xoscar committed Jul 27, 2022
1 parent 96bbd2c commit 3a7b71f
Showing 1 changed file with 3 additions and 20 deletions.
23 changes: 3 additions & 20 deletions src/frontend/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,32 +1,15 @@
import SessionGateway from '../../gateways/Session.gateway';
import * as S from './Footer.styled';

const sessionId = '123';
const requestId = '1234';

const deploymentDetails = {
pod: '123',
zone: '',
clusterName: '',
};
const { userId: sessionId } = SessionGateway.getSession();

const Footer = () => {
return (
<S.Footer>
<div>
<p>This website is hosted for demo purpose only. It is not an actual shop. This is not a Google product</p>
<p>
<span>session-id: {sessionId}</span> - <span>request-id: {requestId}</span>
<br />
<b>Cluster: </b>
{deploymentDetails.clusterName}
<br />
<b>Zone: </b>
{deploymentDetails.zone}
<br />
<b>Pod: </b>
{deploymentDetails.pod}
<br />
Deployment details are still loading. Try refreshing this page.
<span>session-id: {sessionId}</span>
</p>
</div>
<p>
Expand Down

0 comments on commit 3a7b71f

Please sign in to comment.