Vladyslav

Results 13 comments of Vladyslav

UPD I supplemented the check: ```go if err.(*jwt.ValidationError).Errors&jwt.ValidationErrorExpired != 0 && err.(*jwt.ValidationError).Errors&jwt.ValidationErrorSignatureInvalid == 0 ``` It seems to work! Or tell me what is better to do?

@hamzawain7. Solution with `requestAnimationFrame` is pretty good. That is the base of my progress bar implementation. Thanks!

Override all slider styles possible only with: ```jsx import styles from './Styles.module.scss' ``` CSS module: ```css .slider { & :global(.rc-slider-track) { background-color: #aeaeae; } } ``` With `:global` you can...

> Weird, nuked `node_modules`, and re-installed. Fixed the problem. 🤷🏼 yes it helps

**Still relevant**. Any updates? Way to solve this problem: ```javascript navigator.permissions.query({ name: "clipboard-write" as PermissionName }).then(result => {}); ```

@saschanaz. Oh, I got it. An open issue misled me, I thought it was an error ... Thanks

Yes, it next case question. How can I use **"many to one"** case for now? For example, I have a single entity query with loader.Load(): `ID --> []T{T, T, T}`...

The answer is that you need to work with `T[][]` with pre-sorting in the dataloader.