| 104 | }; |
| 105 | |
| 106 | const LoadingScriptsAlert: FC = () => { |
| 107 | return ( |
| 108 | <TerminalAlert |
| 109 | dismissible |
| 110 | severity="info" |
| 111 | actions={<RefreshSessionButton />} |
| 112 | > |
| 113 | Startup scripts are still running. You can continue using this terminal, |
| 114 | but{" "} |
| 115 | <Link |
| 116 | title="your workspace may be incomplete." |
| 117 | href={docs( |
| 118 | "/admin/templates/troubleshooting#your-workspace-may-be-incomplete", |
| 119 | )} |
| 120 | target="_blank" |
| 121 | rel="noreferrer" |
| 122 | > |
| 123 | {" "} |
| 124 | your workspace may be incomplete. |
| 125 | </Link> |
| 126 | </TerminalAlert> |
| 127 | ); |
| 128 | }; |
| 129 | |
| 130 | const LoadedScriptsAlert: FC = () => { |
| 131 | return ( |