learn.svelte.dev icon indicating copy to clipboard operation
learn.svelte.dev copied to clipboard

A soup-to-nuts interactive tutorial on how to build apps with Svelte

Results 121 learn.svelte.dev issues
Sort by recently updated
recently updated
newest added

Hello, Here a small fix in the tuto on hook. It was passing `stack` that was undefined to the console.error. So it crash.

### Discussed in https://github.com/sveltejs/kit/discussions/11872 Originally posted by **brucegl** February 20, 2024 Hi, In [https://learn.svelte.dev/tutorial/handleerror](https://learn.svelte.dev/tutorial/handleerror), is the "solve" solution meant to handle the unexpected error gracefully when you navigate to "the...

bug

![obraz](https://github.com/sveltejs/learn.svelte.dev/assets/75254052/516c12cb-5dc3-4edc-a3d7-67bc25457436) That's supposed to be the answer?

as was done in #502 for tutorial exercises 7.02. With `fill="none"`, the business card paper background is not rendered. This PR changes to `fill="white"` in 7.01 and 7.03. (Really enjoying...

Right now I'm getting error in tutorial page on official tutorial page in svelte in App.Svelte file . Error doesn't go away even if tutorial is solved. ![image](https://github.com/sveltejs/learn.svelte.dev/assets/46044710/bc246562-b485-4d69-96ca-3d6b2a4a3903)

Changed questions from let to const because abusing let in constant values makes code less intuitively readable

### Describe the bug Variables do not update and no reactivity-related feature works, on ios safari with software version 12.5.7. By not working I mean nothing changes when the variables...

The existing `obj = obj` assignment wouldn't work in the given example as `obj` is declared as `const`. Could also be changed to declare `obj` with `let` instead.