Remove title prop from ClickableLocation
This commit is contained in:
@@ -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(
|
||||
|
||||
@@ -48,7 +48,6 @@ export function Location({
|
||||
loc={resolvableLoc}
|
||||
label={displayLabel}
|
||||
databaseUri={databaseUri}
|
||||
title={title}
|
||||
onClick={onClick}
|
||||
/>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user