Skip to content

Commit

Permalink
chore: typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
omeraplak committed Oct 25, 2023
1 parent b17150e commit 9adc4cb
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/Helper/humanize/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ export const HumanizeChoices = {
case "refine-vite":
return {
title: projectType === "refine" ? "Vite" : "refine (Vite)",
description:
"Creates a refine React Vite project (Recommended for CRUD applications).",
description: "Creates a refine React Vite project.",
value: choice,
};
case "refine-nextjs":
Expand All @@ -30,15 +29,15 @@ export const HumanizeChoices = {
? "Next.js"
: "refine (Next.js)",
description:
"Creates a refine Next.js project with SSR support (Recommended for CRUD applications).",
"Creates a refine Next.js project with SSR support.",
value: choice,
};
case "refine-remix":
return {
title:
projectType === "refine" ? "Remix" : "refine (Remix)",
description:
"Creates a refine Remix project with SSR support (Recommended for CRUD applications)",
"Creates a refine Remix project with SSR support",
value: choice,
};
case "refine-react":
Expand All @@ -47,8 +46,7 @@ export const HumanizeChoices = {
projectType === "refine"
? "CRA [Legacy]"
: "refine (CRA) [Legacy]",
description:
"Creates a basic refine project (Recommended for CRUD applications)",
description: "Creates a basic refine project",
value: choice,
};

Expand Down

0 comments on commit 9adc4cb

Please sign in to comment.