-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from commons-stack/blockers-jordi
Added Privacy Policy and changes Terms of Service
- Loading branch information
Showing
6 changed files
with
355 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
import { atom } from "recoil"; | ||
|
||
export default atom<boolean>({ | ||
type NewDaoCheckedState = { | ||
daoInfoChecked: boolean; | ||
legalsChecked: boolean; | ||
}; | ||
|
||
export default atom<NewDaoCheckedState>({ | ||
key: 'newDaoChecked', | ||
default: false, | ||
default: { | ||
daoInfoChecked: false, | ||
legalsChecked: false, | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.