James Hardwick
                                            James Hardwick
                                        
                                    @crazy-max yea I just caught that after this last build. Thanks for the fast response! Oddly enough, I just gave this another go but after removing ```yaml with: install: true...
Something I just noticed though from the build that appeared to have finished was this error message at the end: ``` #27 preparing build cache for export #27 preparing build...
Yea, I added those flags but it didn't appear to add much info: ``` Sat, 19 Dec 2020 17:40:15 GMT #29 exporting cache Sat, 19 Dec 2020 17:40:15 GMT #29...
@crazy-max > Fyi, mode=max is quite aggressive. Caches for all stages of your Dockerfile will be pushed. That's the intent. Without it, not sure there's much purpose to using a...
The greater issue at hand currently is that this repo/project is effectively abandoned. I think going forward, the only way for issues like this one to be fixed is for...
I think if a team is aware enough to be using a tool such as PJF, then when they see a code block that has formatting disabled via `// @formatter:off`...
The bigger concern is that this plugin breaks from IntelliJ default behavior, without any option to restore it or even a hint that it does so. The implication is that...
FWIW, https://github.com/diffplug/spotless/issues/275 was also referenced along with the Google Java Formatter earlier as partial justification for not supporting this, but [Spotless actually added the ability to disable formatting](https://github.com/diffplug/spotless/issues/275#issuecomment-691570036) regardless of...
@rwb196884 wouldn't this do the trick? Just don't return the AuthProvider until userManager, and therefore appSettings, are not null: ```typescript return !userManager ? null : ( ... );
@marlena-sliwinska I actually just went through this issue last week. In order to do it, you'll need to disable `autoSignIn` in your `AuthProviderProps` config. Then in your route configuration, you...