Skip to content

Commit e29dd21

Browse files
committed
fix(ui): remove unnecessary margin from Footer component and clean up TestDetailsPane
1 parent 2410ed8 commit e29dd21

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

frontend/src/components/ui/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const Footer: React.FC = () => {
55
return (
66

77

8-
<footer className="rounded-lg shadow-sm m-4" style={{ background: COLORS.background }}>
8+
<footer className="rounded-lg shadow-sm" style={{ background: COLORS.background }}>
99
<div className="w-full max-w-screen-xl mx-auto p-4 md:py-8">
1010
<div className="sm:flex sm:items-center sm:justify-between">
1111
<a href="#" className="flex items-center mb-4 sm:mb-0 space-x-3 rtl:space-x-reverse">

frontend/src/features/test-details/index.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import type { OpenAPIV3 } from "openapi-types";
1313
import type { EndpointRow } from "@/types/endPointRow.type";
1414
import Button from "@/components/ui/button";
1515
import { COLORS } from "@/config/appConfig";
16-
1716
type OperationObject = OpenAPIV3.OperationObject;
1817
type PathItemObject = OpenAPIV3.PathItemObject;
1918

@@ -79,7 +78,6 @@ const TestDetailsPane: React.FC = () => {
7978

8079
<h1 className="text-white flex flex-col justify-center px-12 space-y-2">
8180
<span className="text-2xl font-bold">Edit & Modify Test Configurations</span>
82-
<p className="text-green-300">Using Ollama Model: Gemma2:2b</p>
8381
</h1>
8482

8583
<div className="grid space-x-3 px-3 items-center">

0 commit comments

Comments
 (0)