@rpcbase/client 0.85.0 → 0.87.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -61,7 +61,6 @@ const ForgotPassword = ({name, logo}) => {
61
61
  <div>
62
62
  <div className="d-flex align-items-center justify-content-center">
63
63
  {logo}
64
- <span className="ms-1 fs-4">{name}</span>
65
64
  </div>
66
65
 
67
66
  <hr />
@@ -22,9 +22,9 @@ const SetNewPassword = ({name, logo}) => {
22
22
  const user_id = useSearchParam("uid")
23
23
  const token = useSearchParam("token")
24
24
 
25
- useEffect(() => {
26
- console.log("TOKEN", user_id, token)
27
- }, [user_id, token])
25
+ // useEffect(() => {
26
+ // console.log("TOKEN", user_id, token)
27
+ // }, [user_id, token])
28
28
 
29
29
  const onSubmit = async(e) => {
30
30
  e.preventDefault()
@@ -67,7 +67,6 @@ const SetNewPassword = ({name, logo}) => {
67
67
  <div>
68
68
  <div className="d-flex align-items-center justify-content-center">
69
69
  {logo}
70
- <span className="ms-1 fs-4">{name}</span>
71
70
  </div>
72
71
 
73
72
  <hr />
@@ -89,7 +89,6 @@ const SignIn = ({
89
89
  <div>
90
90
  <div className="d-flex align-items-center justify-content-center">
91
91
  {logo}
92
- <span className="ms-1 fs-4">{name}</span>
93
92
  </div>
94
93
 
95
94
  <hr />
@@ -17,6 +17,7 @@ import "./sign-out.scss"
17
17
  // TODO: clear cache + db
18
18
 
19
19
  const SignOut = ({
20
+ logo,
20
21
  name,
21
22
  onSuccess = () => null
22
23
  }) => {
@@ -68,7 +69,14 @@ const SignOut = ({
68
69
  </Alert>
69
70
  )}
70
71
 
71
- {accounts ? (<div className="form-signout text-center px-4 py-4 shadow-lg">
72
+ {accounts ? (
73
+ <div className="form-signout text-center px-4 py-4 shadow-lg">
74
+
75
+ <div className="d-flex align-items-center justify-content-center">
76
+ {logo}
77
+ </div>
78
+
79
+ <hr />
72
80
 
73
81
  <h1 className="h4 mt-3 mb-3 fw-normal">Sign Out</h1>
74
82
 
@@ -63,7 +63,6 @@ const SignUp = ({
63
63
  <div>
64
64
  <div className="d-flex align-items-center justify-content-center">
65
65
  {logo}
66
- <span className="ms-1 fs-4">{name}</span>
67
66
  </div>
68
67
 
69
68
  <hr />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpcbase/client",
3
- "version": "0.85.0",
3
+ "version": "0.87.0",
4
4
  "scripts": {
5
5
  "build-firebase": "webpack -c firebase/webpack.config.js",
6
6
  "build": "yarn build-firebase",