Remove not found disclaimer when full history is available (#11583)
This commit is contained in:
@ -74,7 +74,7 @@ function StatusCard({ signature }: Props) {
|
||||
<ErrorCard retry={() => fetchStatus(signature)} text="Fetch Failed" />
|
||||
);
|
||||
} else if (!status.data?.info) {
|
||||
if (firstAvailableBlock !== undefined) {
|
||||
if (firstAvailableBlock !== undefined && firstAvailableBlock > 1) {
|
||||
return (
|
||||
<ErrorCard
|
||||
retry={() => fetchStatus(signature)}
|
||||
|
Reference in New Issue
Block a user