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

Change background color from black to white index.html #92

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/MessageItems/IRCLikeMessageItem/IRCLikeMessageItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ function IRCLikeMessageItemAudio({
Duration: {createTextVNode(msToHigherScale(duration))}
<br />
Size: {createTextVNode(bytesToHigherScale(size))}
<audio src={url} autoPlay={false} />
<audio src={url} />
</p>
</div>
);
Expand Down Expand Up @@ -266,7 +266,7 @@ function IRCLikeMessageItem({
text={content.body}
duration={content.info.duration}
size={content.info.size}
url={content.url.content_uri}
url={content.url}
status={status}
isFocused={isFocused}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=yes"
/>
<meta name="theme-color" content="#000000" />
<meta name="theme-color" content="#ffffff" />
<script type="module" src="index.tsx"></script>
<title>chooj</title>
</head>
Expand Down