Skip to content

Commit d5f85c5

Browse files
committed
hide mirroring so that we can get some of these bug fixes out
1 parent 0b4a34e commit d5f85c5

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

src/packages/frontend/course/configuration/configuration-panel.tsx

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import { DatastoreConfig } from "./datastore-config";
3434
import { KUCALC_ON_PREMISES } from "@cocalc/util/db-schema/site-defaults";
3535
import { EnvironmentVariablesConfig } from "./envvars-config";
3636
import StudentPay from "./student-pay";
37-
import Mirror from "./mirror";
37+
//import Mirror from "./mirror";
3838

3939
interface Props {
4040
name: string;
@@ -44,12 +44,7 @@ interface Props {
4444
}
4545

4646
export const ConfigurationPanel: React.FC<Props> = React.memo(
47-
({
48-
name,
49-
project_id,
50-
settings,
51-
configuring_projects,
52-
}) => {
47+
({ name, project_id, settings, configuring_projects }) => {
5348
const [email_body_error, set_email_body_error] = useState<
5449
string | undefined
5550
>(undefined);
@@ -280,7 +275,7 @@ export const ConfigurationPanel: React.FC<Props> = React.memo(
280275
actions={actions.configuration}
281276
envvars={settings.get("envvars")}
282277
/>
283-
<br />
278+
{/*<br />
284279
<Mirror
285280
checked={!!settings.get("mirror_config")}
286281
setChecked={(mirror_config: boolean) => {
@@ -291,7 +286,7 @@ export const ConfigurationPanel: React.FC<Props> = React.memo(
291286
actions.set({ mirror_config_path, table: "settings" });
292287
}}
293288
project_id={project_id}
294-
/>
289+
/>*/}
295290
</Col>
296291
</Row>
297292
</div>

0 commit comments

Comments
 (0)