learn.svelte.dev
learn.svelte.dev copied to clipboard
A soup-to-nuts interactive tutorial on how to build apps with Svelte
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...
 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. 
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.