Skip to content
This repository was archived by the owner on Nov 6, 2025. It is now read-only.

Commit f5099a3

Browse files
Bugfix: Corrects "Public access" notification typo (#2524)
Spelling correction
1 parent aacf020 commit f5099a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/packages/documents/documents/entity-actions/public-access/repository/public-access.repository.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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 };

0 commit comments

Comments
 (0)