Skip to content

Commit 31300b4

Browse files
committed
Use minus instead of trash
1 parent d964b13 commit 31300b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/src/pages/WorkspacePage/WorkspaceScheduleControls.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { TopbarData, TopbarIcon } from "components/FullPageLayout/Topbar";
1313
import { displayError, displaySuccess } from "components/GlobalSnackbar/utils";
1414
import dayjs, { type Dayjs } from "dayjs";
1515
import { useTime } from "hooks/useTime";
16-
import { ClockIcon, PlusIcon, TrashIcon } from "lucide-react";
16+
import { ClockIcon, MinusIcon, PlusIcon } from "lucide-react";
1717
import { getWorkspaceActivityStatus } from "modules/workspaces/activity";
1818
import { type FC, type ReactNode, forwardRef, useRef, useState } from "react";
1919
import { useMutation, useQueryClient } from "react-query";
@@ -209,7 +209,7 @@ const AutostopDisplay: FC<AutostopDisplayProps> = ({
209209
handleDeadlineChange(deadline.subtract(1, "h"));
210210
}}
211211
>
212-
<TrashIcon className="size-icon-xs" />
212+
<MinusIcon className="size-icon-xs" />
213213
<span style={visuallyHidden}>Subtract 1 hour</span>
214214
</IconButton>
215215
</Tooltip>

0 commit comments

Comments
 (0)