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
+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} />
);