diff --git a/genstudio-create-validation/src/genstudiopem/web-src/src/components/ValidationPanel/Content.tsx b/genstudio-create-validation/src/genstudiopem/web-src/src/components/ValidationPanel/Content.tsx
index c9a3116..9433e04 100644
--- a/genstudio-create-validation/src/genstudiopem/web-src/src/components/ValidationPanel/Content.tsx
+++ b/genstudio-create-validation/src/genstudiopem/web-src/src/components/ValidationPanel/Content.tsx
@@ -11,19 +11,23 @@ governing permissions and limitations under the License.
*/
import React from "react";
-import { Heading, Text, Divider } from "@react-spectrum/s2";
+import { Button, Heading, Text, Divider } from "@react-spectrum/s2";
import { Experience } from "@adobe/genstudio-extensibility-sdk";
interface ContentProps {
experience: Experience;
+ flaggedFieldName?: string;
+ onApplySuggestion?: (fieldName: string) => void;
}
/**
* Content component that displays the details of an experience.
* @param experience - The experience to display
+ * @param flaggedFieldName - The field name that has been flagged
+ * @param onApplySuggestion - Callback to apply the suggestion for a flagged field
* @returns The Content component
*/
-export default function Content({ experience }: ContentProps) {
+export default function Content({ experience, flaggedFieldName, onApplySuggestion }: ContentProps) {
if (!experience) return null;
return (