|
| 1 | +name: 🐛 Bug Report |
| 2 | +description: Report a bug or unexpected behavior in Composer Kit |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug", "needs-triage"] |
| 5 | +assignees: [] |
| 6 | +body: |
| 7 | + - type: markdown |
| 8 | + attributes: |
| 9 | + value: | |
| 10 | + Thanks for taking the time to fill out this bug report! Please provide as much detail as possible to help us reproduce and fix the issue. |
| 11 | +
|
| 12 | + - type: checkboxes |
| 13 | + id: terms |
| 14 | + attributes: |
| 15 | + label: Prerequisites |
| 16 | + description: Please confirm the following before submitting your bug report |
| 17 | + options: |
| 18 | + - label: I have searched existing issues to ensure this bug hasn't been reported already |
| 19 | + required: true |
| 20 | + - label: I have read the documentation and confirmed this is unexpected behavior |
| 21 | + required: true |
| 22 | + - label: I am using a supported version of Composer Kit |
| 23 | + required: true |
| 24 | + |
| 25 | + - type: dropdown |
| 26 | + id: component |
| 27 | + attributes: |
| 28 | + label: Component |
| 29 | + description: Which Composer Kit component is affected? |
| 30 | + options: |
| 31 | + - Address |
| 32 | + - Balance |
| 33 | + - Identity |
| 34 | + - NFT |
| 35 | + - Payment |
| 36 | + - Swap |
| 37 | + - Token Select |
| 38 | + - Transaction |
| 39 | + - Wallet |
| 40 | + - Core/Provider |
| 41 | + - Other (please specify in description) |
| 42 | + validations: |
| 43 | + required: true |
| 44 | + |
| 45 | + - type: textarea |
| 46 | + id: bug-description |
| 47 | + attributes: |
| 48 | + label: Bug Description |
| 49 | + description: A clear and concise description of what the bug is |
| 50 | + placeholder: Describe the bug... |
| 51 | + validations: |
| 52 | + required: true |
| 53 | + |
| 54 | + - type: textarea |
| 55 | + id: expected-behavior |
| 56 | + attributes: |
| 57 | + label: Expected Behavior |
| 58 | + description: What did you expect to happen? |
| 59 | + placeholder: Describe what you expected... |
| 60 | + validations: |
| 61 | + required: true |
| 62 | + |
| 63 | + - type: textarea |
| 64 | + id: actual-behavior |
| 65 | + attributes: |
| 66 | + label: Actual Behavior |
| 67 | + description: What actually happened? |
| 68 | + placeholder: Describe what actually happened... |
| 69 | + validations: |
| 70 | + required: true |
| 71 | + |
| 72 | + - type: textarea |
| 73 | + id: reproduction-steps |
| 74 | + attributes: |
| 75 | + label: Steps to Reproduce |
| 76 | + description: Please provide detailed steps to reproduce the issue |
| 77 | + placeholder: | |
| 78 | + 1. Install @composer-kit/ui |
| 79 | + 2. Import the component... |
| 80 | + 3. Configure with... |
| 81 | + 4. See error... |
| 82 | + validations: |
| 83 | + required: true |
| 84 | + |
| 85 | + - type: textarea |
| 86 | + id: code-sample |
| 87 | + attributes: |
| 88 | + label: Code Sample |
| 89 | + description: Please provide a minimal code sample that reproduces the issue |
| 90 | + render: tsx |
| 91 | + placeholder: | |
| 92 | + import { ComponentName } from "@composer-kit/ui/component"; |
| 93 | +
|
| 94 | + function MyComponent() { |
| 95 | + return ( |
| 96 | + <ComponentName |
| 97 | + // your props here |
| 98 | + /> |
| 99 | + ); |
| 100 | + } |
| 101 | +
|
| 102 | + - type: input |
| 103 | + id: composer-kit-version |
| 104 | + attributes: |
| 105 | + label: Composer Kit Version |
| 106 | + description: What version of @composer-kit/ui are you using? |
| 107 | + placeholder: e.g., 1.0.0 |
| 108 | + validations: |
| 109 | + required: true |
| 110 | + |
| 111 | + - type: dropdown |
| 112 | + id: blockchain-network |
| 113 | + attributes: |
| 114 | + label: Blockchain Network |
| 115 | + description: Which blockchain network are you using? |
| 116 | + options: |
| 117 | + - Celo Mainnet |
| 118 | + - Celo Alfajores Testnet |
| 119 | + - Other (please specify in additional context) |
| 120 | + validations: |
| 121 | + required: false |
| 122 | + |
| 123 | + - type: input |
| 124 | + id: react-version |
| 125 | + attributes: |
| 126 | + label: React Version |
| 127 | + description: What version of React are you using? |
| 128 | + placeholder: e.g., 18.2.0 |
| 129 | + validations: |
| 130 | + required: true |
| 131 | + |
| 132 | + - type: input |
| 133 | + id: node-version |
| 134 | + attributes: |
| 135 | + label: Node.js Version |
| 136 | + description: What version of Node.js are you using? |
| 137 | + placeholder: e.g., 18.17.0 |
| 138 | + validations: |
| 139 | + required: true |
| 140 | + |
| 141 | + - type: dropdown |
| 142 | + id: browser |
| 143 | + attributes: |
| 144 | + label: Browser |
| 145 | + description: Which browser are you using? |
| 146 | + options: |
| 147 | + - Chrome |
| 148 | + - Firefox |
| 149 | + - Safari |
| 150 | + - Edge |
| 151 | + - Other (please specify in additional context) |
| 152 | + validations: |
| 153 | + required: false |
| 154 | + |
| 155 | + - type: dropdown |
| 156 | + id: wallet |
| 157 | + attributes: |
| 158 | + label: Wallet |
| 159 | + description: Which wallet are you using (if applicable)? |
| 160 | + options: |
| 161 | + - MetaMask |
| 162 | + - WalletConnect |
| 163 | + - Coinbase Wallet |
| 164 | + - Valora |
| 165 | + - Other (please specify in additional context) |
| 166 | + - Not applicable |
| 167 | + validations: |
| 168 | + required: false |
| 169 | + |
| 170 | + - type: textarea |
| 171 | + id: error-logs |
| 172 | + attributes: |
| 173 | + label: Error Logs |
| 174 | + description: Please paste any relevant error messages or console logs |
| 175 | + render: shell |
| 176 | + placeholder: Paste error logs here... |
| 177 | + |
| 178 | + - type: textarea |
| 179 | + id: additional-context |
| 180 | + attributes: |
| 181 | + label: Additional Context |
| 182 | + description: Add any other context about the problem here (screenshots, related issues, etc.) |
| 183 | + placeholder: Any additional information that might help... |
| 184 | + |
| 185 | + - type: checkboxes |
| 186 | + id: contribution |
| 187 | + attributes: |
| 188 | + label: Contribution |
| 189 | + description: Would you be willing to contribute a fix for this issue? |
| 190 | + options: |
| 191 | + - label: I would be willing to submit a PR to fix this issue |
| 192 | + required: false |
0 commit comments