Skip to content

Commit

Permalink
Fixed lint issues: unused variables
Browse files Browse the repository at this point in the history
Signed-off-by: Anand-Theertha <[email protected]>
  • Loading branch information
Anand-Theertha committed Dec 9, 2024
1 parent 2abdd8d commit 1e3b9b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/sections/Projects/Sistent/components/card/code.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";
import { navigate } from "gatsby";
import { useLocation } from "@reach/router";

import { SistentThemeProvider, Card, CardActions, CardContent, CardHeader, CardMedia , Typography, Box, Button } from "@layer5/sistent";
import { SistentThemeProvider, Card, CardActions, CardContent, CardMedia , Typography, Button } from "@layer5/sistent";
import { CodeBlock } from "../button/code-block";
import { SistentLayout } from "../../sistent-layout";

Expand Down
2 changes: 1 addition & 1 deletion src/sections/Projects/Sistent/components/card/guidance.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";
import { navigate } from "gatsby";
import { useLocation } from "@reach/router";
import { Row } from "../../../../../reusecore/Layout";
import { SistentThemeProvider, Card, CardActions, CardContent, CardHeader, CardMedia , Typography, Box, Button } from "@layer5/sistent";
import { SistentThemeProvider, Card, CardActions, CardContent, CardMedia , Typography, Button } from "@layer5/sistent";
import { SistentLayout } from "../../sistent-layout";
import MesheryLogo from "../../../../../assets/images/meshery/meshery-logo-light-text-side.webp";
import KanvasLogo from "../../../../../assets/images/kanvas/icon-only/kanvas-icon-color.png";
Expand Down
11 changes: 1 addition & 10 deletions src/sections/Projects/Sistent/components/card/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useLocation } from "@reach/router";
import MesheryLogo from "../../../../../assets/images/meshery/meshery-logo-light-text-side.webp";
import KanvasLogo from "../../../../../assets/images/kanvas/icon-only/kanvas-icon-color.png";

import { SistentThemeProvider, Card, CardActions, CardContent, CardHeader, CardMedia , Typography, Box, Button } from "@layer5/sistent";
import { SistentThemeProvider, Card, CardActions, CardContent, CardMedia , Typography, Box, Button } from "@layer5/sistent";
import TabButton from "../../../../../reusecore/Button";
import { SistentLayout } from "../../sistent-layout";
import { Row } from "../../../../../reusecore/Layout";
Expand All @@ -14,15 +14,6 @@ const SistentCard = () => {
const location = useLocation();
const { isDark } = useStyledDarkMode();

const bull = (
<Box
component="span"
sx={{ display: "inline-block", mx: "2px", transform: "scale(0.8)" }}
>
</Box>
);

const cardOutlined = (
<React.Fragment>
<CardContent>
Expand Down

0 comments on commit 1e3b9b4

Please sign in to comment.