diff --git a/CHANGELOG.md b/CHANGELOG.md
index 853678e..f695363 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
-- Added [LiveSvelte Components Macro](https://github.com/woutdp/live_svelte#the-components-macro) - [PR](https://github.com/woutdp/live_svelte/pull/50)
+- Added [LiveSvelte Components Macro](https://github.com/woutdp/live_svelte#the-components-macro) - [PR](https://github.com/woutdp/live_svelte/pull/50)
## [0.7.1] - 2023-06-03
@@ -21,18 +21,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
-- Added `pushEventTo`
+- Added `pushEventTo`
## [0.6.0] - 2023-05-26
### Added
-- Install instructions on importing LiveSvelte inside `html_helpers` so `<.svelte />` is possible.
+- Install instructions on importing LiveSvelte inside `html_helpers` so `<.svelte />` is possible.
### Changed
-- Deprecated `LiveSvelte.render` in favor of `LiveSvelte.svelte`
-- Now we're using `<.svelte />` instead of `` in the examples
+- Deprecated `LiveSvelte.render` in favor of `LiveSvelte.svelte`
+- Now we're using `<.svelte />` instead of `` in the examples
## [0.5.1] - 2023-05-06
diff --git a/README.md b/README.md
index f7c55e3..7d81b95 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
# LiveSvelte
+
[](https://github.com/woutdp/live_svelte)
[](https://hex.pm/packages/live_svelte)
@@ -245,7 +246,6 @@ _Note: that here we use the `pushEvent` function, but you could also use `phx-cl
_`pushEventTo` is available too and works exactly the same way as specified in the [documentation](https://hexdocs.pm/phoenix_live_view/js-interop.html#client-hooks-via-phx-hook)._
-
#### Create a LiveView
```elixir
diff --git a/example_project/assets/js/app.js b/example_project/assets/js/app.js
index c983aea..ac3ef2c 100644
--- a/example_project/assets/js/app.js
+++ b/example_project/assets/js/app.js
@@ -26,8 +26,8 @@ import {getHooks} from "live_svelte"
import * as SvelteComponents from "../svelte/**/*"
const Hooks = {
- ...createLiveJsonHooks(),
- ...getHooks(SvelteComponents)
+ ...createLiveJsonHooks(),
+ ...getHooks(SvelteComponents),
}
let csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute("content")
diff --git a/example_project/assets/svelte/LiveJson.svelte b/example_project/assets/svelte/LiveJson.svelte
index 8cec0fb..3e316dc 100644
--- a/example_project/assets/svelte/LiveJson.svelte
+++ b/example_project/assets/svelte/LiveJson.svelte
@@ -1,17 +1,17 @@
LiveJson demo
Check the websocket to see how much data is being transferred.