Skip to content

Commit 957fd44

Browse files
committed
small fix
1 parent cc6a941 commit 957fd44

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/react/src/modules/guide/components/Toolbar/V2/GuidesListDisplaySelect.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Select } from "@telegraph/select";
22

3-
import { MAX_Z_INDEX } from "../shared";
3+
import { TOOLBAR_Z_INDEX } from "../shared";
44

55
export type DisplayOption = "current-page" | "all-eligible" | "all-guides";
66

@@ -19,10 +19,10 @@ export const GuidesListDisplaySelect = ({ value, onChange }: Props) => {
1919
onChange(value as DisplayOption);
2020
}}
2121
contentProps={{
22-
style: { zIndex: MAX_Z_INDEX },
22+
style: { zIndex: TOOLBAR_Z_INDEX },
2323
}}
2424
>
25-
{/* NOTE: Commented out until we can show relevant indicators.
25+
{/* NOTE: Commented out until we can show relevant indicators for this opt
2626
<Select.Option size="1" value="current-page">
2727
Displayable on current page
2828
</Select.Option>

0 commit comments

Comments
 (0)