Skip to content

Commit acd0ce2

Browse files
committed
Fix TerminalAlerts
1 parent e25b978 commit acd0ce2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

site/src/pages/TerminalPage/TerminalAlerts.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import Button from "@mui/material/Button";
21
import Link from "@mui/material/Link";
32
import type { WorkspaceAgent } from "api/typesGenerated";
43
import { Alert, type AlertProps } from "components/Alert/Alert";
4+
import { Button } from "components/Button/Button";
55
import { type FC, useEffect, useRef, useState } from "react";
66
import { docs } from "utils/docs";
77
import type { ConnectionStatus } from "./types";
@@ -186,8 +186,8 @@ const RefreshSessionButton: FC = () => {
186186
return (
187187
<Button
188188
disabled={isRefreshing}
189-
size="small"
190-
variant="text"
189+
size="sm"
190+
variant="subtle"
191191
onClick={() => {
192192
setIsRefreshing(true);
193193
window.location.reload();

0 commit comments

Comments
 (0)