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

Add todo list component and evidence todo, #5343 #5373

Merged
merged 35 commits into from
Feb 14, 2025
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
f1f396d
Initial fellowship todo list component, #5343
hyifeng Jan 13, 2025
ad07ff6
Add click navigation, #5343
hyifeng Jan 14, 2025
ad9cfc3
fix: icon color
hyifeng Jan 14, 2025
a48e576
Add demotion period expiring check, #5343
hyifeng Jan 15, 2025
989b43e
Add no evidence reminder, #5343
hyifeng Jan 15, 2025
b2388f9
Show evidence submission todo, #5343
hyifeng Jan 15, 2025
f88d87c
Create retention referenda todo, #5343
hyifeng Jan 15, 2025
64b3b78
fix: popup polkadot api and chain param, #5343
hyifeng Jan 15, 2025
a932ea7
Merge branch 'main' into init-todo-list-component-5343
hyifeng Jan 22, 2025
ac0d024
Move check logic to context, #5343
hyifeng Jan 22, 2025
e2292d9
Add bump all todo, #5343
hyifeng Jan 23, 2025
c750068
fix: should use collectives last height, #5343
hyifeng Jan 23, 2025
790f0b4
fix: bump all popup block height, #5343
hyifeng Jan 23, 2025
1064411
Add loading, #5343
hyifeng Jan 23, 2025
9284172
refactor, #5343
hyifeng Jan 24, 2025
235a570
refactor, #5343
hyifeng Jan 24, 2025
28d50a9
fix: bump all popup loading, #5343
hyifeng Jan 24, 2025
c92f022
refactor, #5343
hyifeng Jan 24, 2025
8da0655
Rename button, #5343
hyifeng Jan 24, 2025
0960de9
Remove tx submission cross api support, #5343
hyifeng Jan 24, 2025
ffd3d73
refactor, #5343
hyifeng Jan 24, 2025
3345b5c
fix: wrong file name, #5343
hyifeng Jan 24, 2025
f807804
Remove unused component, #5343
hyifeng Jan 24, 2025
fbaeb3f
Improve empty todo expand, #5343
hyifeng Feb 7, 2025
a557c21
fix: default collapsed, #5343
hyifeng Feb 12, 2025
445603e
refactor, #5343
hyifeng Feb 12, 2025
99155a9
refactor, #5343
hyifeng Feb 12, 2025
ea8f49d
Rename DemotionTodo to DemotionExpirationTodo and simplify data, #5343
hyifeng Feb 12, 2025
a1d1d62
Merge branch 'fellowship-todo-list-5343' into init-todo-list-componen…
hyifeng Feb 12, 2025
0fe7787
Simplify demotion expiration hook, #5343
hyifeng Feb 12, 2025
77a72f1
fix: useNativeTokenIcon
hyifeng Feb 12, 2025
7150b04
fix useMemberData
hyifeng Feb 13, 2025
1e1e2e7
refactor my demotion todo, #5343
hyifeng Feb 13, 2025
cee3ed2
refactor, #5343
hyifeng Feb 14, 2025
9063d9c
refactor, #5343
hyifeng Feb 14, 2025
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
Prev Previous commit
Next Next commit
refactor, #5343
hyifeng committed Jan 24, 2025
commit c92f022adfc9406eff04c248f8fdf7738369deb3
Original file line number Diff line number Diff line change
@@ -4,10 +4,8 @@ import { useEffect, useState } from "react";
export default function useSubCoreFellowshipEvidence(
address,
pallet = "fellowshipCore",
customApi,
) {
const contextApi = useContextApi();
const api = customApi || contextApi;
const api = useContextApi();
const [wish, setWish] = useState("");
const [evidence, setEvidence] = useState("");
const [loading, setLoading] = useState(true);