Skip to content

Commit

Permalink
chore(release): v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kylegl committed Apr 20, 2024
1 parent 38adaee commit 925021d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
# Changelog


## v1.0.3


### 🩹 Fixes

- Import ([07b29e4](https://github.com/kylegl/nitropay/commit/07b29e4))

### 🏡 Chore

- Cleanup ([8cd3c8f](https://github.com/kylegl/nitropay/commit/8cd3c8f))
- **release:** V1.0.1 ([e06989a](https://github.com/kylegl/nitropay/commit/e06989a))
- **release:** V1.0.2 ([38adaee](https://github.com/kylegl/nitropay/commit/38adaee))

### ❤️ Contributors

- Kyle <lauber.kyle@gmail.com>

## v1.0.2


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nuxt-nitropay",
"version": "1.0.2",
"version": "1.0.3",
"description": "Nitropay Ad Module for Nuxt.js",
"repository": "https://github.com/kylegl/nitropay.git",
"license": "MIT",
Expand Down
5 changes: 3 additions & 2 deletions src/runtime/components/NitroAd.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<script setup lang="ts">
import { useNitropay, ref, type UseNitropayOptions } from '#imports'
import { useNitropay, ref } from '#imports'
// import type { UseNitropayOptions } from '#imports'
const props = defineProps<{
config: UseNitropayOptions
config: Parameters<typeof useNitropay>[0]
}>()
const adEl = ref()
Expand Down

0 comments on commit 925021d

Please sign in to comment.