-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: fix eslint issues * eslint change * chore: lint changes * review changes * review changes
- Loading branch information
1 parent
cc29b03
commit e5e363f
Showing
61 changed files
with
1,411 additions
and
2,504 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
{ | ||
"semi": false, | ||
"trailingComma": "es5", | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"useTabs": false | ||
} | ||
"trailingComma": "es5", | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"useTabs": 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
File renamed without changes
File renamed without changes
File renamed without changes
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 was deleted.
Oops, something went wrong.
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,12 +1,7 @@ | ||
import React from "react"; | ||
import Feegrant from "./Feegrant"; | ||
import React from 'react'; | ||
|
||
const page = () => { | ||
return ( | ||
<div className="page"> | ||
<Feegrant /> | ||
</div> | ||
); | ||
return <div className="page">Feegrant</div>; | ||
}; | ||
|
||
export default page; |
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,11 +1,7 @@ | ||
import React from 'react' | ||
import React from 'react'; | ||
|
||
const page = () => { | ||
return ( | ||
<div className='page'> | ||
governance | ||
</div> | ||
) | ||
} | ||
return <div className="page">governance</div>; | ||
}; | ||
|
||
export default page | ||
export default page; |
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,13 +1,7 @@ | ||
import React from "react"; | ||
import Groups from "../../../components/tabs/Groups"; | ||
import React from 'react'; | ||
|
||
const page = () => { | ||
return ( | ||
<div className="page space-y-10"> | ||
<Groups /> | ||
|
||
</div> | ||
); | ||
return <div className="page space-y-10">Groups</div>; | ||
}; | ||
|
||
export default page; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,15 +1,7 @@ | ||
import React from 'react' | ||
import AllMultisigAccount from './AllMultisigAccount' | ||
// import Groups from "../../../components/tabs/"; | ||
import Multisig from 'staking/components/tabs/Multisg' | ||
|
||
import React from 'react'; | ||
|
||
const page = () => { | ||
return ( | ||
<div className='page'> | ||
<Multisig /> | ||
</div> | ||
) | ||
} | ||
return <div className="page">Multisig</div>; | ||
}; | ||
|
||
export default page | ||
export default page; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,20 +1,6 @@ | ||
import React from "react"; | ||
import StakingCards from "../../../components/StakingCards"; | ||
import StakedAmount from "../../../components/StakedAmount"; | ||
import StakedAmountWithActions from "../../../components/StakedAmountWithActions"; | ||
import ValidatorsTable from "../../../components/ValidatorsTable"; | ||
|
||
import React from 'react'; | ||
const page = () => { | ||
return ( | ||
<div className="page space-y-10"> | ||
<StakedAmountWithActions /> | ||
<div className="topNav__title"> | ||
<h2>My Delegation</h2> | ||
</div> | ||
<StakingCards /> | ||
<ValidatorsTable /> | ||
</div> | ||
); | ||
return <div>Staking</div>; | ||
}; | ||
|
||
export default page; |
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.