Mateusz Piórowski

Results 19 comments of Mateusz Piórowski

I think i might have a similar problem, but it is not fixed by reactivity. https://github.com/mpiorowski/rusve/blob/78bedb5dc4e491a53149a5476d8d711fa08347a7/client/src/lib/form/Button.svelte#L6 ```ts import LoadingComponent from "$lib/components/LoadingComponent.svelte"; export let type: "button" | "submit" = "submit"; export...

@ota-meshi but there problem here is not className at all, check out this example ``` export let variant: "primary" | "secondary" | "error" = "primary"; if (variant === "primary") {...

Also the same problem, the funny thing is that the ``` {#await data.streamed.three} Loading... {:then value} {value} {:catch error} {error.message} {/await} ``` works when i navigate to this page from...

This is the error i am getting when i run wezterm on newest arch / hyprland, with `wayland_enabled = true`: ``` interface 'wl_surface' has no event 2 09:07:31.773 ERROR wezterm_gui...

this is the settings that works for me for now: ``` config.front_end = "WebGpu" config.enable_wayland = false ```

Same problem here, nextjs throwing error when i redirect from: (auth)/login/page.tsx -> redirect function in -> (auth)/layout.tsx to (app)/page.tsx So i am basically trying to redirect from `/login` to `/`

Not gonna lie, i am not an expert in Rust, just started learning it a few months ago, still proud that the code use min uwrap / cloning. Love it....

if anyone will need this, thats how i manage to do it: ``` const ( ansiReset = "\033[0m" ansiFaint = "\033[2m" ansiResetFaint = "\033[22m" ansiBrightRed = "\033[91m" ansiBrightGreen = "\033[92m"...