mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-12 13:29:47 +00:00
removed unused history
This commit is contained in:
parent
a86ff9b42a
commit
1769140c98
1 changed files with 1 additions and 22 deletions
|
@ -23,31 +23,10 @@ type Props = {
|
||||||
}>,
|
}>,
|
||||||
title: string,
|
title: string,
|
||||||
claimIsMine: Boolean,
|
claimIsMine: Boolean,
|
||||||
history: {
|
|
||||||
entries: { title: string }[],
|
|
||||||
goBack: () => void,
|
|
||||||
goForward: () => void,
|
|
||||||
index: number,
|
|
||||||
length: number,
|
|
||||||
location: { pathname: string },
|
|
||||||
push: string => void,
|
|
||||||
state: {},
|
|
||||||
replaceState: ({}, string, string) => void,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
function ShowPage(props: Props) {
|
function ShowPage(props: Props) {
|
||||||
const {
|
const { isResolvingUri, resolveUri, uri, claim, blackListedOutpoints, location, claimIsMine, isSubscribed } = props;
|
||||||
isResolvingUri,
|
|
||||||
resolveUri,
|
|
||||||
uri,
|
|
||||||
claim,
|
|
||||||
blackListedOutpoints,
|
|
||||||
location,
|
|
||||||
claimIsMine,
|
|
||||||
isSubscribed,
|
|
||||||
history,
|
|
||||||
} = props;
|
|
||||||
const signingChannel = claim && claim.signing_channel;
|
const signingChannel = claim && claim.signing_channel;
|
||||||
const canonicalUrl = claim && claim.canonical_url;
|
const canonicalUrl = claim && claim.canonical_url;
|
||||||
const claimExists = claim !== null && claim !== undefined;
|
const claimExists = claim !== null && claim !== undefined;
|
||||||
|
|
Loading…
Add table
Reference in a new issue