Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix(default-theme): add missing component import (#1418)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkucmus authored Apr 7, 2021
1 parent 558de39 commit 947a0db
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,6 @@
import { SfHeading, SfDivider } from "@storefront-ui/vue"
import { addProductReview } from "@shopware-pwa/shopware-6-client"
import { getMessagesFromErrorsArray } from "@shopware-pwa/helpers"
import SwButton from "@/components/atoms/SwButton.vue"
import SwInput from "@/components/atoms/SwInput.vue"
import SwErrorsList from "@/components/SwErrorsList.vue"
import { ref, computed } from "@vue/composition-api"
import {
useUser,
Expand All @@ -79,11 +76,12 @@ import {
export default {
name: "SwAddProductReview",
components: {
SwInput,
SwButton,
SwErrorsList,
SfHeading,
SfDivider,
SwInput: () => import("@/components/atoms/SwInput.vue"),
SwButton: () => import("@/components/atoms/SwButton.vue"),
SwErrorsList: () => import("@/components/SwErrorsList.vue"),
SwRating: () => import("@/components/atoms/SwRating.vue"),
},
props: {
productId: {
Expand Down

1 comment on commit 947a0db

@vercel
Copy link

@vercel vercel bot commented on 947a0db Apr 7, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.