Islam Yamor
Islam Yamor
I have the following Model: ```js const userSchema = new mongoose.Schema({ name: String, by: { type: mongoose.Schema.ObjectId, ref: 'User' } }) const UserModel = mongoose.model('User', userSchema, 'users') ``` and I...
Bug:
I have the following code: ```js import React, { useRef } from 'react'; export default function FormDialog() { const inputRef = useRef(); return ( { inputRef.current?.focus(); }} autoFocus /> );...
## Use case Learn this module ## Proposed solution Can you make up documentation for the module? I can't find any way I can learn this library except the npm...
```js const express = require("express"); const expressAsyncHandler = require("express-async-handler"); const app = express(); const f = async () => { return false; }; app.get( "/", expressAsyncHandler(async () => { throw...
I am using this package outside of nestjs in a pure expressjs application. it works well but there are some issues. However, I recently discovered that this file in the...
Can you please export the interfaces and types used in the package? for example I needed the interface `DownloaderConfig` but it wasn't exported, I needed to copy it manually and...
When installing muibox while using React 18, the following errors show up:  Will muibox support react 18?
I want to change the default border outline color when the input box is focused, per box. How can I achieve that?
### Prerequisites - [X] I have written a descriptive issue title - [X] I have searched existing issues to ensure the feature has not already been requested ### 🚀 Feature...
If you use a date type in your zod schema as follows it will always fail validation, because JSON does not have date type, only strings, and zod will always...