👔 adding name capitalization to the provider
This commit is contained in:
@ -6,7 +6,7 @@ export const getOauthProvidersService = () => {
|
|||||||
const listProviders = getOauthProviders();
|
const listProviders = getOauthProviders();
|
||||||
|
|
||||||
return listProviders.map(({ name, icon, req_endpoint }) => ({
|
return listProviders.map(({ name, icon, req_endpoint }) => ({
|
||||||
name,
|
name: name.charAt(0).toUpperCase() + name.slice(1),
|
||||||
icon,
|
icon,
|
||||||
req_endpoint,
|
req_endpoint,
|
||||||
}));
|
}));
|
||||||
|
|||||||
Reference in New Issue
Block a user