@rpg-engine/long-bow 0.7.2 → 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/long-bow.cjs.development.js +72 -76
- package/dist/long-bow.cjs.development.js.map +1 -1
- package/dist/long-bow.cjs.production.min.js +1 -1
- package/dist/long-bow.cjs.production.min.js.map +1 -1
- package/dist/long-bow.esm.js +72 -76
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ChatRevamp/ChatRevamp.tsx +2 -6
package/package.json
CHANGED
|
@@ -174,7 +174,7 @@ export const ChatRevamp: React.FC<IChatRevampProps> = ({
|
|
|
174
174
|
};
|
|
175
175
|
|
|
176
176
|
return (
|
|
177
|
-
|
|
177
|
+
<>
|
|
178
178
|
{renderTabs()}
|
|
179
179
|
<PrivateChatContainer
|
|
180
180
|
width={styles?.width || '80%'}
|
|
@@ -186,14 +186,10 @@ export const ChatRevamp: React.FC<IChatRevampProps> = ({
|
|
|
186
186
|
</RecentChatTabContainer>
|
|
187
187
|
{renderChatContent()}
|
|
188
188
|
</PrivateChatContainer>
|
|
189
|
-
|
|
189
|
+
</>
|
|
190
190
|
);
|
|
191
191
|
};
|
|
192
192
|
|
|
193
|
-
const Container = styled.div`
|
|
194
|
-
max-width: 800px;
|
|
195
|
-
`;
|
|
196
|
-
|
|
197
193
|
const TabContainer = styled.div`
|
|
198
194
|
width: 100%;
|
|
199
195
|
display: flex;
|