Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Openid #2945
base: master
Are you sure you want to change the base?
Openid #2945
Changes from 146 commits
e3a1cd6
cb75f63
03acb3b
2e13fed
28c323e
e3ed86a
8696956
29bd12f
0c35c91
4fb4424
a31861a
e4e37a5
850865b
27aeb09
914106e
b1d02bf
9e4f185
939b870
a86b7a3
f2344c0
9031ede
cf1b485
08a2d32
262a4ff
8cbcc3f
d921631
ee43263
e3118d8
3213048
963f11c
403c73f
55ff88d
919bc5b
5a7ef59
db47c22
4beabb5
9b53173
e5feddd
d56e1f2
ad1d774
0aa1f74
eba7af7
e5ea5b6
637fa93
5214fce
899494a
da7b0d6
8389cee
6eb64df
7deb883
e633c8c
db82dba
618202a
f8da704
ccbabe5
04369bc
57dcb89
b6e7c48
c7c1f4a
e5ce252
6522800
4b72a00
cd6c283
0c67d72
1d06652
1226f5b
c4f37c0
cc39152
2c6d71d
12ae11c
6a5e520
c4995f7
2d80c1d
1e04f3a
9a9aeb8
7cc9c30
e8cfa79
bd66917
46301c4
187e841
e76d74c
7a77f86
20e8864
1c4e858
d3b9659
e7ae31c
3893b22
de9664c
9cec67c
a134bdc
9d70014
25e4694
2ad5123
2dffea4
0bfc25a
fc87021
817c3a6
0048608
b2ab60a
622b195
7b14b89
7f405b1
6ce0a93
7f10bf2
55246f9
cabf174
b2fd2e2
780a3d6
75db9a4
ce5ee9b
ea1b56f
6a78649
29b87ab
8d4745a
8056d43
2b20ba1
e7c6d79
d2b8dd6
12af985
f4cd173
25687b2
c81841f
c6f66c5
ffbfd97
3f4b287
521b8d2
7cb7918
925337f
9de7cc0
a057f68
01b1273
c37c74d
e5025ca
d2ec0c2
ff992ab
9c88bc1
59ac6ee
ce1b8b7
76c3fac
226282e
4750516
ddfe646
bfc4b5d
f789f30
2c13abc
5a23f3f
4d522e5
6626f83
051b29a
6553314
5cb9613
97ebff9
43b49e2
7bdff09
4453145
3ec6cc1
906ed5e
d4b0e49
30afb0e
ae2506f
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove duplicate
useEffect
hooks to eliminate redundancyThe
useEffect
hooks starting at lines 117 and 135 are identical, resulting in redundant execution of the same code. This can lead to unintended side effects, such as multiple notifications for a single token expiration event. Please remove one of the duplicateuseEffect
blocks to avoid redundancy.Apply this diff to remove the duplicate
useEffect
hook:Also applies to: 135-151