Hayk Khachatryan

Results 6 comments of Hayk Khachatryan

I ended up using a try/except and retrying the api call after the `Retry-After` time. Will check backoff out, thanks!

I wrapped the `

@kissu SSR doesn't work so the image isn't available server side anyway though, right?

We implemented a(n ugly) fix for this which you can see in https://github.com/quilljs/quill/issues/409#issuecomment-1488435233

Set the brush's fill to your desired color, eg ```ts drauu.options.brush.fill = 'red' ``` or ```ts import { createDrauu } from 'drauu' const drauu = createDrauu({ el: '#svg', brush: {...

I got it working by passing the plugin through [`fixupPluginRules`](https://eslint.org/blog/2024/05/eslint-compatibility-utilities/) first ```js // eslint.config.js const { defineConfig } = require('eslint/config') const { fixupPluginRules } = require('@eslint/compat') const neverthrow = require('eslint-plugin-neverthrow')...