downloadShareHandler('share')}>
+
downloadShareHandler('share')} style={{ display: 'flex', flexDirection: 'column', alignItems: 'center' }}>
{/* Share */}
+ {shareLoader ? (
+
+
+
+ ) : (
+
+ {' '}
+
+ )}
+
+ {t('label.share')}
+
+
+
+
downloadShareHandler('download')} style={{ display: 'flex', flexDirection: 'column', alignItems: 'center' }}>
+ {/* Download */}
+ {downloadLoader ? (
+
+
+
+ ) : (
+
+
+
+ )}
+
+ {t('label.download')}
+
+
+ {/*
downloadShareHandler('share')}>
+
{
margin: '5px 0',
}}>
downloadShareHandler('download')}>
- {/* Download */}
+
-
+
*/}
diff --git a/apps/amakrushi/src/components/HomePage/index.tsx b/apps/amakrushi/src/components/HomePage/index.tsx
index 919f39ef..bce50701 100644
--- a/apps/amakrushi/src/components/HomePage/index.tsx
+++ b/apps/amakrushi/src/components/HomePage/index.tsx
@@ -229,7 +229,7 @@ const HomePage: NextPage = () => {
// Store the cursor position
const cursorPosition = e.target.selectionStart;
setCursorPosition(cursorPosition);
- setShowExampleMessages(inputValue.length === 0);
+ // setShowExampleMessages(inputValue.length === 0);
// Adjust textarea height dynamically based on content
if (inputRef.current) {
//@ts-ignore
@@ -412,7 +412,6 @@ const HomePage: NextPage = () => {
value={inputMsg}
onChange={handleInputChange}
placeholder={placeholder}
- onClick={() => setShowExampleMessages(true)}
/>