Remove title prop from ClickableLocation

This commit is contained in:
Robert
2023-11-07 16:17:54 +00:00
parent 814ba246f8
commit 9c51d1b54f
2 changed files with 0 additions and 3 deletions

View File

@@ -9,7 +9,6 @@ interface Props {
loc: ResolvableLocationValue;
label: string;
databaseUri: string;
title?: string;
onClick?: () => void;
}
@@ -24,7 +23,6 @@ export function ClickableLocation({
loc,
label,
databaseUri,
title,
onClick: onClick,
}: Props): JSX.Element {
const handleClick = useCallback(

View File

@@ -48,7 +48,6 @@ export function Location({
loc={resolvableLoc}
label={displayLabel}
databaseUri={databaseUri}
title={title}
onClick={onClick}
/>
);