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