Skip to content

Commit

Permalink
Clean code
Browse files Browse the repository at this point in the history
  • Loading branch information
RachelElysia committed Jan 24, 2025
1 parent b194ac7 commit 664bdac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
.software-details-modal {
&__modal-content {
display: flex;
align-items: flex-start;
align-content: flex-start;
gap: 40px;
align-self: stretch;
flex-wrap: wrap;
column-gap: $pad-xxlarge;
row-gap: $pad-xlarge;
}

.react-tooltip {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,13 @@ interface IFleetAppSummaryProps {
name: string;
platform: string;
version: string;
url: string;
onClickShowAppDetails: (event: MouseEvent) => void;
}

const FleetAppSummary = ({
name,
platform,
version,
url,
onClickShowAppDetails,
}: IFleetAppSummaryProps) => {
return (
Expand Down Expand Up @@ -291,7 +289,6 @@ const FleetMaintainedAppDetailsPage = ({
name={fleetApp.name}
platform={fleetApp.platform}
version={fleetApp.version}
url={fleetApp.url || "http://www.fakeurl.com"}
onClickShowAppDetails={onClickShowAppDetails}
/>
<FleetAppDetailsForm
Expand Down

0 comments on commit 664bdac

Please sign in to comment.