This repository was archived by the owner on Nov 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/packages/documents/documents/entity-actions/public-access/repository Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export class UmbDocumentPublicAccessRepository extends UmbControllerBase impleme
2727
2828 const { error } = await this . #dataSource. create ( unique , data ) ;
2929 if ( ! error ) {
30- const notification = { data : { message : `Public acccess setting created` } } ;
30+ const notification = { data : { message : `Public access setting created` } } ;
3131 this . #notificationContext?. peek ( 'positive' , notification ) ;
3232 }
3333 return { error } ;
@@ -46,7 +46,7 @@ export class UmbDocumentPublicAccessRepository extends UmbControllerBase impleme
4646
4747 const { error } = await this . #dataSource. update ( unique , data ) ;
4848 if ( ! error ) {
49- const notification = { data : { message : `Public acccess setting updated` } } ;
49+ const notification = { data : { message : `Public access setting updated` } } ;
5050 this . #notificationContext?. peek ( 'positive' , notification ) ;
5151 }
5252 return { error } ;
@@ -57,7 +57,7 @@ export class UmbDocumentPublicAccessRepository extends UmbControllerBase impleme
5757
5858 const { error } = await this . #dataSource. delete ( unique ) ;
5959 if ( ! error ) {
60- const notification = { data : { message : `Public acccess setting deleted` } } ;
60+ const notification = { data : { message : `Public access setting deleted` } } ;
6161 this . #notificationContext?. peek ( 'positive' , notification ) ;
6262 }
6363 return { error } ;
You can’t perform that action at this time.
0 commit comments