Olorunnishola Olamilekan

Results 12 issues of Olorunnishola Olamilekan

### Description Pair up project mates based on their availability to pair and their tech stack. Users should receive pair suggestions and have the ability to accept pairing suggestions where...

feature

The image at the hero section of the website loads slowly when opening the site for the first time. This is not really great for the site's performance. Issue #17...

I was wondering if there was a way to show an image preview of my file saved on Cloudinary. It might be made available for specific document types e.g. .pdf,...

The navigation links including the button in the nav bar have poor visual hierarchy hence they are not easily noticeable. The button animation could also be improved in order to...

Hello, I wish to find out if there's a way I could detect keplr wallet with EIP-6963. I have checked the constants file and it's not there but to my...

**1. Read the [FAQs](#faqs) 👇** **2. Describe the bug** It's more of a mistake in the example than a typo. To add a root to useInView, the example given was:...

bug

The current active state of the links in the navbar would most likely be initially perceived as inactive links due to the current styling. A better way to denote that...

```ts type MergeIntersection = { [K in keyof I]: I[K] } type JSONSchema2TS = V extends { enum: infer T extends any[] } ? T[number] : V extends { type:...

answer
en
26401

```ts type ParseUrlParams = T extends `${string}:${infer P}/${infer R}` ? P | ParseUrlParams : T extends `${string}:${infer R}` ? R : never ```

answer
en
9616

```ts type ExtractType = [K] extends [never] ? { [P in keyof T]-?: T[P] } : { [P in K]-?: T[P] } & { [P in keyof T as P...

answer
en
2759