From bc348c92abb891154bedf125519bdcb18ebd6e68 Mon Sep 17 00:00:00 2001 From: Anna Mistele Date: Thu, 22 Aug 2024 13:43:06 -0700 Subject: [PATCH] Fix commenting --- packages/perseus/src/widgets/phet-sim.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/perseus/src/widgets/phet-sim.tsx b/packages/perseus/src/widgets/phet-sim.tsx index a4c37ad598..7e7fe4d2a1 100644 --- a/packages/perseus/src/widgets/phet-sim.tsx +++ b/packages/perseus/src/widgets/phet-sim.tsx @@ -20,7 +20,7 @@ import {basicBorderColor, borderRadiusLarge} from "../styles/global-constants"; import type {PerseusPhetSimWidgetOptions} from "../perseus-types"; import type {WidgetExports, WidgetProps} from "../types"; -type RenderProps = PerseusPhetSimWidgetOptions; // transform = _.identity +type RenderProps = PerseusPhetSimWidgetOptions; type Props = WidgetProps; // For returning user input, but currently the PhET widget @@ -35,7 +35,7 @@ type State = { url: URL | null; }; -/* This renders the PhET sim */ +// This renders the PhET sim export class PhetSim extends React.Component { static contextType = PerseusI18nContext; declare context: React.ContextType;