Skip to content

Commit

Permalink
woops
Browse files Browse the repository at this point in the history
  • Loading branch information
fzhao99 committed Oct 16, 2024
1 parent 120dd10 commit d03b4f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions query-connector/src/app/query/components/CustomizeQuery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ const CustomizeQuery: React.FC<CustomizeQueryProps> = ({
return (
<div>
<div className="padding-top-3">
<Backlink onClick={goBack} label="RETURN_TO_STEP_TWO_COPY" />
<Backlink onClick={goBack} label={RETURN_TO_STEP_TWO_COPY} />
</div>
<LoadingView loading={!useCaseQueryResponse} />
<h1 className="font-sans-2xl text-bold margin-top-205">
Expand Down Expand Up @@ -218,7 +218,7 @@ const CustomizeQuery: React.FC<CustomizeQueryProps> = ({
};

export default CustomizeQuery;
export const RETURN_TO_STEP_TWO_COPY = "RETURN_TO_STEP_TWO_COPY";
export const RETURN_TO_STEP_TWO_COPY = "Return to Select query";
export const QUERY_CUSTOMIZATION_CONFIRMATION_HEADER =
"Query Customization Successful!";
export const QUERY_CUSTOMIZATION_CONFIRMATION_BODY =
Expand Down

0 comments on commit d03b4f4

Please sign in to comment.