Skip to content

Commit

Permalink
Fixed function prop wanring (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-t-frost authored Feb 3, 2021
1 parent c398662 commit 95a6b05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-ld",
"version": "0.1.6",
"version": "0.1.7",
"description": "A Vue.js wrapper for the LaunchDarkly SDK for Browser JavaScript",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/LDRouteGuard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import ldRedirectMixin from '../mixins/ldRedirect';
export default {
mixins: [ldRedirectMixin()],
props: {
component: { type: [Object, Promise], required: true },
component: { type: [Function, Object, Promise], required: true },
requiredFeatureFlag: { type: String, required: true },
to: { type: [String, Object], required: true },
},
Expand Down

0 comments on commit 95a6b05

Please sign in to comment.