mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
fixed unique key prop error in the cols mapping the login buttons
Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
parent
41f969fda6
commit
56ff708e35
1 changed files with 6 additions and 1 deletions
|
@ -39,7 +39,12 @@ const Login: React.FC = () => {
|
|||
.filter((value) => authProviders[value])
|
||||
.map((value) => {
|
||||
return (
|
||||
<Col xs={12} md={4} className="p-2 d-flex flex-column">
|
||||
<Col
|
||||
xs={12}
|
||||
md={4}
|
||||
className="p-2 d-flex flex-column"
|
||||
key={value}
|
||||
>
|
||||
<ViaOAuth2 oauth2Type={value}/>
|
||||
</Col>
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue