Skip to content

Commit 73e8a79

Browse files
authored
Merge branch 'main' into yash/ref-constructor-params
2 parents 554d869 + e958e75 commit 73e8a79

File tree

37 files changed

+1208
-1115
lines changed

37 files changed

+1208
-1115
lines changed

.github/workflows/stale.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ jobs:
1111
with:
1212
stale-issue-message: 'This issue has been inactive for 30 days. It is now marked as stale and will be closed in 5 days if no further activity occurs.'
1313
stale-pr-message: 'This PR has been inactive for 30 days. It is now marked as stale and will be closed in 5 days if no further activity occurs.'
14-
days-before-stale: 30
15-
days-before-close: 5
14+
days-before-stale: 7
15+
days-before-close: 2

apps/dashboard/framer-rewrites.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module.exports = [
55
// -- product landing pages --
66
// -- connect
77
"/connect/sign-in",
8+
"/nebula",
89
// -- contracts
910
"/contracts/modular-contracts",
1011
"/contracts/explore",

apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/_components/claim-conditions/claim-conditions-form/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ export const ClaimConditionsForm: React.FC<ClaimConditionsFormProps> = ({
454454
};
455455
}, [claimConditionsQuery.data, controlledFields, isMultiPhase]);
456456

457-
if (isFetchingData) {
457+
if (claimConditionsQuery.isPending) {
458458
return (
459459
<div className="flex h-[400px] w-full items-center justify-center rounded-lg border border-border">
460460
<Spinner className="size-10" />

0 commit comments

Comments
 (0)