Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pages/careers/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Script from "next/script";
import { useRouter } from "next/router";
import NextLink from "next/link";
import Head from "next/head";
const Carrers: NextPage = () => {
const Careers: NextPage = () => {
const router = useRouter();

const { t: pageTranslation } = useTranslation(["page-careers"]);
Expand Down Expand Up @@ -183,4 +183,4 @@ export async function getStaticProps({ locale }: { locale: string }) {
};
}

export default Carrers;
export default Careers;
2 changes: 1 addition & 1 deletion pages/ecosystem/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const Explore: NextPage<ExplorePageProps> = ({

// this will make calls to the API, will call handleUpvoteProjectState (optimistic), and will revert by calling it again with the opposite value to revert state
const onUpvoteProject = (projectId: string, upvoted: boolean) => {
// window.alert("Disabled for the momment")
// window.alert("Disabled for the moment")
//uncomment code to enable upvote functionality and comment/ remove above line
// if user is not signed in, take them to sign in page
if (!sessionObject) {
Expand Down
2 changes: 1 addition & 1 deletion utils/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export const getSHMProjects = (): Promise<{
twiterUrl: "",
status: status || "pending",
});
// Catagory
// Category
if (status === "accepted") {
categoryCount[projectCategory] = categoryCount[projectCategory]
? categoryCount[projectCategory] + 1
Expand Down