DM styles update

This commit is contained in:
2023-08-24 15:25:54 +01:00
parent 0e7aefb036
commit e8e65c71cd
54 changed files with 411 additions and 142 deletions

View File

@ -6,14 +6,13 @@ import Icon from "Icons/Icon";
import { UITask } from "Tasks";
import { DonateTask } from "./DonateTask";
import { Nip5Task } from "./Nip5Task";
import { System } from "index";
const AllTasks: Array<UITask> = [new Nip5Task(), new DonateTask()];
AllTasks.forEach(a => a.load());
export const TaskList = () => {
const publicKey = useLogin().publicKey;
const user = useUserProfile(System, publicKey);
const user = useUserProfile(publicKey);
const [, setTick] = useState<number>(0);
function muteTask(t: UITask) {