Skip to content

Commit

Permalink
add in review Applicaitons Button
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Nov 28, 2024
1 parent 4986a5a commit 4876c47
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/common/src/allo/backends/allo-v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ export class AlloV2 implements Allo {
});

// sync pool with checker
await fetch("http://api.checker.gitcoin.co/api/pools", {
await fetch("https://api.checker.gitcoin.co/api/pools", {
method: "POST",
headers: {
"Content-Type": "application/json",
Expand Down Expand Up @@ -763,7 +763,7 @@ export class AlloV2 implements Allo {
});

// sync pool with checker
await fetch("http://api.checker.gitcoin.co/api/pools", {
await fetch("https://api.checker.gitcoin.co/api/pools", {
method: "POST",
headers: {
"Content-Type": "application/json",
Expand Down
20 changes: 20 additions & 0 deletions packages/round-manager/src/features/round/GrantApplications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { Tab } from "@headlessui/react";
import { horizontalTabStyles } from "../common/Utils";
import { MdRateReview } from "react-icons/md";
import { TabApplicationCounter } from "../common/styles";
import { Link } from "react-router-dom";

function GrantApplications(props: {
isDirectRound?: boolean;
Expand Down Expand Up @@ -55,6 +56,25 @@ function GrantApplications(props: {
isDirectRound={props.isDirectRound!}
/>
<div className="py-5 mb-8">
<div className="w-[954px] h-[164px] p-6 bg-[#f6fcf0] rounded-2xl border border-[#eaeaea] flex-col justify-start items-start gap-6 inline-flex">
<div className="self-stretch h-[60px] flex-col justify-start items-start gap-2 flex">
<div className="self-stretch text-black text-lg font-medium font-['Modern Era'] leading-relaxed">
Checker is now in Beta
</div>
<div className="self-stretch text-black text-base font-normal font-['Modern Era'] leading-relaxed">
Use our AI-powered application assistant to process
applicants with confidence
</div>
</div>
<div className="h-8 px-3 py-2 bg-[#00433b] rounded-lg border border-[#00433b] justify-center items-center gap-1.5 inline-flex">
<Link
to={`https://beta.checker.gitcoin.co/review/${props.chainId}-${props.roundId}`}
className="text-white text-sm font-medium font-['DM Mono'] leading-none"
>
Review Applications
</Link>
</div>
</div>
<div className="my-4 flex justify-start items-center text-md font-normal font-momo">
<MdRateReview className="h-4 w-4 mr-2 text-rose-300" />
<span>Manual Review</span>
Expand Down

0 comments on commit 4876c47

Please sign in to comment.