Skip to content

Commit

Permalink
remove unused haslaps property
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasBK committed Dec 20, 2024
1 parent 563d444 commit 3bf265a
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
Expand Up @@ -18,7 +18,7 @@ import { FC } from 'react';
import { EdgeInfoProps } from '../index';
import { Link, Typography } from '@mui/material';

const LinuxAbuse: FC<EdgeInfoProps & { haslaps: boolean }> = ({ sourceName, targetName, targetType, haslaps }) => {
const LinuxAbuse: FC<EdgeInfoProps> = ({ sourceName, targetName, targetType }) => {
switch (targetType) {
case 'User':
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,7 @@ import { FC } from 'react';
import { Link, Typography } from '@mui/material';
import { EdgeInfoProps } from '../index';

const WindowsAbuse: FC<EdgeInfoProps & { haslaps: boolean }> = ({
sourceName,
sourceType,
targetName,
targetType,
haslaps,
}) => {
const WindowsAbuse: FC<EdgeInfoProps> = ({ sourceName, sourceType, targetName, targetType }) => {
switch (targetType) {
case 'User':
return (
Expand Down

0 comments on commit 3bf265a

Please sign in to comment.