-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: user profile Signed-off-by: karan <[email protected]> * implemented new table Signed-off-by: karan <[email protected]> * replaced old table with new table Signed-off-by: karan <[email protected]> * implemented debouncing Signed-off-by: karan <[email protected]> * fix: sonar lint issues Signed-off-by: karan <[email protected]> * fix: sonar lint issues Signed-off-by: karan <[email protected]> * handled dark mode Signed-off-by: karan <[email protected]> * made minor changes Signed-off-by: karan <[email protected]> * updated user dashboard Signed-off-by: karan <[email protected]> * feat: implemented pagination on ecosystem Signed-off-by: karan <[email protected]> * handled ecosystem error message Signed-off-by: karan <[email protected]> * added sorting Signed-off-by: karan <[email protected]> * handled all conditions Signed-off-by: karan <[email protected]> * fix: margin and padding Signed-off-by: karan <[email protected]> * improved tooltip data Signed-off-by: karan <[email protected]> * fix: width issue Signed-off-by: karan <[email protected]> * improved roles wise svg Signed-off-by: karan <[email protected]> * changed verification svg Signed-off-by: karan <[email protected]> * added sorting in oob Signed-off-by: karan <[email protected]> * improved sorting Signed-off-by: karan <[email protected]> * handled spell check Signed-off-by: karan <[email protected]> * fix: PR Commits Signed-off-by: karan <[email protected]> * fix: org and ecosystem edit popup Signed-off-by: karan <[email protected]> * fix: org and ecosystem edit popup Signed-off-by: karan <[email protected]> * placed process image function in enum Signed-off-by: karan <[email protected]> * created common component to error message Signed-off-by: karan <[email protected]> * fix: passkey auth Signed-off-by: karan <[email protected]> * fix: validation for passkey Signed-off-by: karan <[email protected]> * fix: connection issue Signed-off-by: karan <[email protected]> * fix: connection issue Signed-off-by: karan <[email protected]> * handled data types Signed-off-by: karan <[email protected]> * handled data types Signed-off-by: karan <[email protected]> * fix: verified details data sync issue Signed-off-by: karan <[email protected]> * fix: verification popup Signed-off-by: karan <[email protected]> --------- Signed-off-by: karan <[email protected]> Co-authored-by: karan <[email protected]> Co-authored-by: Sanjay Khatal <[email protected]> Co-authored-by: Nishad Shirsat <[email protected]> Co-authored-by: 16-karan <[email protected]>
- Loading branch information
Showing
27 changed files
with
1,031 additions
and
986 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
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import React from 'react'; | ||
|
||
const ErrorMessage = ({ error, touched }) => { | ||
return touched && <span className="text-red-500 text-xs">{error}</span>; | ||
}; | ||
export default ErrorMessage; |
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
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.