Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deploying #40

Merged
merged 4 commits into from
Feb 20, 2025
Merged
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
14 changes: 7 additions & 7 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@

@layer base {
:root {
--background: 300 36% 8%;
--foreground: 197 100% 98%;
--card: 250 20% 8%;
--popover: 250 20% 8%;
--background: 300 33% 15%;
--foreground: 197 100% 95%;
--card: 250 15% 10%;
--popover: 250 15% 10%;
--popover-foreground: 0 0% 98%;
--primary: 189 100% 45%;
--primary: 189 100% 40%;
--primary-foreground: 0 0% 100%;
--secondary: 191 89% 21%;
--secondary-foreground: 0 0% 98%;
--muted: 225 9.1% 65.5%;
--muted-foreground: 225 9.1% 65.5%;
--destructive: 357 57% 55%;
--destructive-foreground: 197 100% 95%;
--action: 300 36% 8%;
--action-foreground: 189 100% 45%;
--action: 300 33% 15%;
--action-foreground: 189 100% 40%;
--border: 240 2% 23%;
--input: 240 3.7% 15.9%;
--ring: 240 10% 3.9%;
Expand Down
2 changes: 2 additions & 0 deletions src/components/app/DaoList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import { DaoListCard } from "./DaoListCard";
export const DaoList = () => {
const { address, chain } = useAccount();

console.log("DaoList chain", chain);

const { daos, isLoading, isFetched } = useDaosForAddress({
chainid: toHex(chain?.id || "0"),
address,
Expand Down
1 change: 1 addition & 0 deletions src/hooks/useDaosForAddress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export const useDaosForAddress = ({
queryFn: (): Promise<{
daos: DaosWithMembers[];
}> => {
console.log("useDaosForAddress chainid", chainid);
const yeeterUrl = getGraphUrl({
chainid: chainid || "",
graphKey: config?.graphKey || "",
Expand Down
1 change: 1 addition & 0 deletions src/lib/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const getGraphUrl = ({
graphKey: string;
subgraphKey: string;
}): string => {
console.log("getGraphUrl chainid", chainid);
const subgraphHash = SUBGRAPH_IDS[subgraphKey][chainid];
if (!subgraphHash) {
console.log("invalid chainid or subgraphkey");
Expand Down
Loading