Skip to content

Commit 846315f

Browse files
committed
remove redundant indexes
1 parent 777b1d9 commit 846315f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

source/renderer/app/components/status/DaedalusDiagnostics.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ import type { CoreSystemInfo } from '../../types/coreSystemInfoTypes';
2626
import type { TipInfo } from '../../api/network/types';
2727
import { ErrorType } from '../../domains/ApiError';
2828

29-
const popupZIndex = 10000;
30-
3129
const messages = defineMessages({
3230
systemInfo: {
3331
id: 'daedalus.diagnostics.dialog.system.info',
@@ -590,7 +588,7 @@ class DaedalusDiagnostics extends Component<Props, State> {
590588
{getRow('platformVersion', platformVersion)}
591589
{getRow(
592590
'cpu',
593-
<PopOver zIndex={popupZIndex} content={cpu}>
591+
<PopOver content={cpu}>
594592
{cpu}
595593
</PopOver>
596594
)}
@@ -610,7 +608,6 @@ class DaedalusDiagnostics extends Component<Props, State> {
610608
{getRow(
611609
'hasMetHardwareRequirementsLabel',
612610
<PopOver
613-
zIndex={popupZIndex}
614611
content={intl.formatMessage(
615612
hasMetHardwareRequirements
616613
? messages.hasMetHardwareRequirementsStatusGoodTooltip
@@ -669,7 +666,6 @@ class DaedalusDiagnostics extends Component<Props, State> {
669666
>
670667
<div className={styles.stateDirectoryPath}>
671668
<PopOver
672-
zIndex={popupZIndex}
673669
maxWidth={400}
674670
content={
675671
<div className={styles.tooltipLabelWrapper}>

0 commit comments

Comments
 (0)