Skip to content

Commit 5703523

Browse files
author
Trey Ivy
committed
remove comments
1 parent e7df45b commit 5703523

File tree

1 file changed

+0
-16
lines changed
  • frontend/src/components/Problems/LogOutput

1 file changed

+0
-16
lines changed

frontend/src/components/Problems/LogOutput/index.tsx

-16
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,6 @@ const DEFAULT_TAIL_BYTES = 10_000;
2121

2222
/* eslint-disable consistent-return */
2323
const LogOutput: React.FC<Props> = ({blobReference, tailBytes = DEFAULT_TAIL_BYTES}) => {
24-
// if (blobReference.ephemeralURL != "" && env('NEXT_PUBLIC_BROWSER_URL')) {
25-
// const url = new URL(blobReference.ephemeralURL, env('NEXT_PUBLIC_BROWSER_URL'))
26-
// var logDownload = <Space direction="horizontal" size="small">
27-
// <Card>
28-
// <ButtonGroup>
29-
// <Button>
30-
// <DownloadOutlined/>
31-
// <Link href={url.toString()} download="test.log" target="_self">Download Log File</Link>
32-
// </Button>
33-
// <Tooltip title="Depending on the configuration of your remote cache, this link may point to ephemeral content and it could disappear.">
34-
// <Button icon={<WarningOutlined/>} danger/>
35-
// </Tooltip>
36-
// </ButtonGroup>
37-
// </Card>
38-
// </Space>
39-
// }
4024
const [contents, setContents] = useState<string>("");
4125
useEffect(() => {
4226
fetch(blobReference.downloadURL, {

0 commit comments

Comments
 (0)