Merge pull request #29665 from GabDug/typos
chore(typos): fix various code typos
This commit is contained in:
@@ -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} />
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user