diff --git a/.prettierrc.json b/.prettierrc.json index b4d1390..7ca3a28 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -9,6 +9,5 @@ "singleQuote": true, "tabWidth": 2, "trailingComma": "all", - "useTabs": false, - "plugins": ["prettier-plugin-tailwindcss"] + "useTabs": false } diff --git a/src/components/credential-service/d-credential-service.tsx b/src/components/credential-service/d-credential-service.tsx index 0df67f5..4ca7e12 100644 --- a/src/components/credential-service/d-credential-service.tsx +++ b/src/components/credential-service/d-credential-service.tsx @@ -1,4 +1,5 @@ import { Component, Host, Prop, h } from '@stencil/core'; +import 'material-symbols'; @Component({ tag: 'd-credential-service', @@ -6,17 +7,17 @@ import { Component, Host, Prop, h } from '@stencil/core'; shadow: true, }) export class DCredentialService { - @Prop({ reflect: true }) name: string; - @Prop({ reflect: true }) issuer: string; - @Prop({ reflect: true }) logoSrc?: string; - @Prop({ reflect: true }) description?: string; - @Prop({ reflect: true }) href?: string; + @Prop() name: string; + @Prop() issuer: string; + @Prop() logoSrc?: string; + @Prop() description?: string; + @Prop() href?: string; render() { const content = (