Skip to content

Commit

Permalink
remove: redundant selected
Browse files Browse the repository at this point in the history
  • Loading branch information
jebibot committed Dec 12, 2024
1 parent b7c6497 commit 4a36f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ export default {
</div>
<div id="chat-container">
<select id="chat-select">
${stream.map((s) => `<option value=${JSON.stringify(s.chat)}${hasExtension || !s.extension ? `${s === initialChat ? ' selected' : ''}>${s.id}` : ` disabled>${s.id} [확장 프로그램 필요]`}</option>`).join('\n\t\t\t\t\t')}
${stream.map((s) => `<option value=${JSON.stringify(s.chat)}${hasExtension || !s.extension ? `>${s.id}` : ` disabled>${s.id} [확장 프로그램 필요]`}</option>`).join('\n\t\t\t\t\t')}
</select>
<iframe src=${JSON.stringify((!initialChat?.extension && initialChat?.chat) || 'about:blank')} frameborder="0" scrolling="no" id="chat"></iframe>
</div>
Expand Down

0 comments on commit 4a36f0d

Please sign in to comment.