fix: cannot use private name ComponentProps
diff --git a/quick-links/Component.tsx b/quick-links/Component.tsx
index 0343eac..db711e6 100644
--- a/quick-links/Component.tsx
+++ b/quick-links/Component.tsx
@@ -31,7 +31,7 @@
links_text?: string;
}
-interface ComponentProps {
+interface IProps {
navigate: (url: string) => void;
request: {
instance: {
@@ -41,7 +41,7 @@
hasDivider?: boolean;
}
-const Component = ({ navigate, request, hasDivider }: ComponentProps) => {
+const Component = ({ navigate, request, hasDivider }: IProps) => {
const { t } = useTranslation('plugin', {
keyPrefix: 'quick_links.frontend',
diff --git a/quick-links/info.yaml b/quick-links/info.yaml
index 362d6a7..fb9f601 100644
--- a/quick-links/info.yaml
+++ b/quick-links/info.yaml
@@ -17,6 +17,6 @@
slug_name: quick_links
type: sidebar
-version: 1.0.2
+version: 1.0.3
author: answerdev
link: https://github.com/apache/answer-plugins/tree/main/quick-links