grantbi

Results 5 comments of grantbi

I figured it a partial solution. One needs to add the head tags in storybook to load any external font libraries. https://storybook.js.org/configurations/add-custom-head-tags/ Also, add some external font links to the...

You could try using this idea: Change flambe.platform.html.HtmlStage.hx line 34: //scaleFactor = computeScaleFactor(); (Comment this out) scaleFactor = 1; (This fixes the high DPI resolution problems on iOS 4+ Retina.)...

Not sure if this helps, but I was able to get the setup working with a hybrid of this example: https://github.com/sails101/even-more-passport

![Screen Shot 2023-11-03 at 1 24 31 PM](https://github.com/seblucas/cops/assets/4573131/2ca34766-1a2a-4129-8a15-81bd082d57e6) Although I have the same issue, this is the error for me. I'm not sure why the template isn't loading. ``` if...

The problem is the `value` is something like: ``` {"decoder":{},"shouldInlineParams":false,"queryChunks":[{"value":["(CURRENT_TIMESTAMP)"]}]} ``` So I just changed the line in 103 to: `const unix = value?.getTime?.() ?? Date.now();` I'm not sure why...