Igor Makowski

Results 20 issues of Igor Makowski

While the limit is set to `10`, paginate function returns only `3` items: ```json { "items": [...], "meta": { "totalItems": 32, "itemCount": 3, "itemsPerPage": 10, "totalPages": 4, "currentPage": 1 }...

I tried to create a test but i got error with using `socket.io-mock` library. I'm using Typescript btw. `room.gateway.spec.ts` ``` import { Test, TestingModule } from '@nestjs/testing' import { RoomGateway...

```ts ``` I tried to do something like that and I got a type error `Type '{ children: Element[]; className: string; }' is not assignable to type 'IntrinsicAttributes & IntrinsicClassAttributes...

```ts import type { PartialDeep } from 'type-fest' import type { TrackEntity } from '@app/api/types' export const trackExample: PartialDeep = { name: 'In Search for New Wisdom', href: 'https://open.spotify.com/track/0QBcteLxmPLG4gAXc1pEqW', album:...

documentation

```tsx link ``` ```tsx test('should open in spotify', async () => { render(, { wrapper: MemoryRouterProvider, }) const user = userEvent.setup() await user.click(screen.getByRole('link')) expect(mockRouter.pathname).toEqual(href) }) ``` ```bash AssertionError: expected '/'...

`.storybook/main.ts` ```ts import type { StorybookConfig } from '@storybook/nextjs' const config: StorybookConfig = { stories: ['../**/*.mdx', '../**/*.stories.@(js|jsx|mjs|ts|tsx)'], addons: [ '@storybook/addon-onboarding', '@storybook/addon-links', '@storybook/addon-essentials', '@chromatic-com/storybook', '@tomfreudenberg/next-auth-mock', '@storybook/addon-interactions', ], framework: { name: '@storybook/nextjs',...

### NextUI Version 2.4.2 ### Describe the bug `navigation-bar.tsx` ```tsx 'use server' import { Navbar, NavbarBrand, NavbarContent, NavbarItem, } from '@nextui-org/navbar' import { SignInButton } from './sign-in-button' import { UserDropdown...

### Is there an existing issue for this? - [X] I have searched the existing issues and my issue is unique - [X] My issue appears in the command-line and...

bug
help wanted
typescript

### Is there an existing issue that is already proposing this? - [X] I have searched the existing issues ### Is your feature request related to a problem? Please describe...

feature

### Description of change Removing deprecated method of loading entities via file path in `dataSource` ### Pull-Request Checklist - [x] Code is up-to-date with the `master` branch - [x] `npm...

documentation