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

View File

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