Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/api/metadata/proxy/__tests__/endpoint.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ describe('metadata/[network] endpoint', () => {
expect(response.status).toBe(400);
});

it('should return proper status upon processig data', async () => {
it('should return proper status upon processing data', async () => {
setEnvironment('NEXT_PUBLIC_METADATA_ENABLED', 'true');

const { request, nextParams } = requestFactory();
Expand Down
2 changes: 1 addition & 1 deletion app/utils/anchor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,6 @@ function typeDisplayName(
if ('option' in type) return `${typeDisplayName(type.option)} (optional)`;
if ('vec' in type) return `${typeDisplayName(type.vec)}[]`;
if ('array' in type) return `${typeDisplayName(type.array[0])}[${type.array[1]}]`;
return 'unkonwn';
return 'unknown';
}
}
2 changes: 1 addition & 1 deletion app/utils/parseFeatureAccount.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function isFeatureAccount(account: Account): boolean {
export const useFeatureAccount = (account: Account) => {
const isFeature = isFeatureAccount(account);

// allow to retreive sign of a Feature Account
// allow to retrieve sign of a Feature Account
return { isFeature };
};

Expand Down