chore(typos): Fix low-impact typos

Signed-off-by: Gabriel Dugny <gabriel.dugny@believe.com>
This commit is contained in:
Gabriel Dugny
2025-04-18 14:19:31 +02:00
parent 129dfdb588
commit 72d019d663
83 changed files with 218 additions and 150 deletions
+4 -4
View File
@@ -130,7 +130,7 @@ export default createFrontendModule({
name: 'group-profile',
// By default, this card will show up only for groups
filter: 'kind:group'
// Returing a custom card component
// Returning a custom card component
loader: () =>
import('./components').then(m => <m.MyCustomGroupProfileEntityCard />),
}),
@@ -182,7 +182,7 @@ export default createFrontendModule({
name: 'members-list',
// By default, this card will show up only for groups
filter: 'kind:group'
// Returing a custom card component
// Returning a custom card component
loader: () =>
import('./components').then(m => <m.MyCustomMembersListEntityCard />),
}),
@@ -234,7 +234,7 @@ export default createFrontendModule({
name: 'ownership',
// By default, this card will show up only for groups or users
filter: 'kind:group,user'
// Returing a custom card component
// Returning a custom card component
loader: () =>
import('./components').then(m => <m.MyCustomOwnershipEntityCard />),
}),
@@ -286,7 +286,7 @@ export default createFrontendModule({
name: 'user-profile',
// By default, this card will show up only for groups or users
filter: 'kind:user'
// Returing a custom card component
// Returning a custom card component
loader: () =>
import('./components').then(m => <m.MyCustomOwnershipEntityCard />),
}),