Skip to content

Commit

Permalink
Fixed the typos
Browse files Browse the repository at this point in the history
- Changed "Buildes:" to "Builders:"
- Changed "Buildes pages:" to
   "Builders pages:".
- Changed "teh buildres" to "the
   buildres"
  • Loading branch information
rohann06 committed Aug 22, 2024
1 parent 3a2b578 commit a2d3765
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/nextjs/app/builders/_components/MembersList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const MembersList = ({ builders }: { builders: string[] }) => {
<>
<div className=" flex justify-center items-center md:gap-x-10 relative">
<div className="flex items-center gap-x-2 md:mb-8 mb-5">
<p className="text-lg font-normal text-[25px] underline">Buildes :</p>
<p className="text-lg font-normal text-[25px] underline">Builders:</p>
<p className="text-lg font-bold text-[24px]">
{loading ? (
<div className="animate-spin text-lg">
Expand All @@ -46,7 +46,7 @@ const MembersList = ({ builders }: { builders: string[] }) => {
</p>
</div>
<div className="flex items-center gap-x-2 md:mb-8 mb-5">
<p className="text-lg font-normal text-[25px] underline">Buildes pages created:</p>
<p className="text-lg font-normal text-[25px] underline">Builders pages created:</p>
<p className="text-lg font-bold text-[24px]">
{loading ? (
<div className="animate-spin text-lg">
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/app/builders/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import MembersList from "./_components/MembersList";
import fs from "fs/promises";
import path from "path";

// Getting teh buildres dir. data
// Getting the buildres dir. data
const getBuildersData = async () => {
const buildersDirectory = path.join(process.cwd(), "/app/builders");
const builderFiles = await fs.readdir(buildersDirectory);
Expand Down

0 comments on commit a2d3765

Please sign in to comment.