Skip to content

Commit

Permalink
Merge pull request #40 from HausDAO/dev
Browse files Browse the repository at this point in the history
deploying
  • Loading branch information
skuhlmann authored Feb 20, 2025
2 parents 990c957 + a5ec8de commit b558c6e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
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

0 comments on commit b558c6e

Please sign in to comment.