Merge pull request #29665 from GabDug/typos

chore(typos): fix various code typos
This commit is contained in:
Fredrik Adelöw
2025-04-28 16:50:18 +02:00
committed by GitHub
83 changed files with 217 additions and 149 deletions
+1 -1
View File
@@ -125,7 +125,7 @@ export class VisitsStorageApi implements VisitsApi {
private async retrieveAll(): Promise<Array<Visit>> {
const storageKey = await this.getStorageKey();
// Handles for case when snapshot is and is not referenced per storaged type used
// Handles for case when snapshot is and is not referenced per storage type used
const snapshot = this.storageApi.snapshot<Array<Visit>>(storageKey);
if (snapshot?.presence !== 'unknown') {
return snapshot?.value ?? [];
@@ -39,7 +39,7 @@ describe('VisitsWebStorageApi.create()', () => {
jest.clearAllMocks();
});
it('instantiates with only identitiyApi', () => {
it('instantiates with only identityApi', () => {
const api = VisitsWebStorageApi.create({
identityApi: mockIdentityApi,
errorApi: mockErrorApi,
@@ -43,7 +43,7 @@ export const Default = () => {
);
};
export const InAccordian = () => {
export const InAccordion = () => {
const ExpandedComponentAccordion = (props: any) => (
<ComponentAccordion expanded {...props} />
);