Skip to content
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
6 changes: 4 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ Single source of truth for developer and AI assistant rules. Tool-specific files
- **Never add AI co-author to commits** — no "Co-Authored-By" lines for AI assistants.
- **Do not generate .md files** unless explicitly told to.

## 🔀 Parallel Work
## 🔀 Git Workflow

- **NEVER commit or push directly to main** — all changes must go through a pull request. No exceptions.
- **Always work from a feature branch** — create a branch, push it, open a PR, wait for CI to pass, then merge.
- **Use git worktrees** for parallel work (`claude --worktree <name>` or `git worktree add`).
- Multiple agents/sessions must use separate worktrees to avoid collisions.

Expand Down Expand Up @@ -116,7 +118,7 @@ Button, Card (named export), BaseInput, BaseSelect, Checkbox, Divider, Title, To

## 📁 Documentation

- **All docs go in `docs/`** (except root `README.md`, `SOP.md`, `CONTRIBUTING.md`).
- **All docs go in `docs/`** (except root `README.md` and `CONTRIBUTING.md`).
- **Keep it concise** — AI tends to be verbose. No one reads that.
- **Check existing docs** before creating new ones — merge instead of duplicate.
- **Delete or edit outdated docs** instead of creating new ones.
Expand Down
File renamed without changes.
2 changes: 2 additions & 0 deletions src/components/Global/InvitesGraph/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2564,6 +2564,8 @@ export default function InvitesGraph(props: InvitesGraphProps) {
handleResetView,
handleReset,
handleRecalculate,
hiddenStatuses,
setHiddenStatuses,
})}
</div>
</>
Expand Down
7 changes: 6 additions & 1 deletion src/constants/chains.consts.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// https://wagmi.sh/core/chains
// How to add a new chain:
// 1. If available in wagmi/chains (https://wagmi.sh/core/api/chains), import it directly.
// 2. If NOT in wagmi/chains, create a custom chain object (see `milkomeda` below for reference).
// 3. Add it to the `supportedPeanutChains` array at the bottom of this file.
// Note: Every chain used in the SDK MUST be listed here, or wallet interactions will break.
// Chains can be listed here even if not yet supported in the SDK.

import type { Chain } from 'viem'
import * as wagmiChains from 'wagmi/chains'
Expand Down
Loading