csr tangled client in solid-js
15

Configure Feed

Select the types of activity you want to include in your feed.

comment out unused code for now

dawn (May 22, 2026, 9:11 AM +0300) 8b91c465 f0ef5edf

+14 -16
+14 -16
src/pages/repo/code.tsx
··· 100 100 </div> 101 101 ); 102 102 103 - const FallbackLanguageBar: Component = () => ( 104 - <details class="group -my-4 -m-6 mb-4"> 105 - <summary class="untangled-language-bar"> 106 - <div 107 - class="untangled-language-segment" 108 - title="Other 100%" 109 - style={{ 110 - width: "100%", 111 - 'background-color': languageColor("Other"), 112 - }} 113 - /> 114 - </summary> 115 - </details> 116 - ); 117 - 118 - void FallbackLanguageBar; 103 + // const FallbackLanguageBar: Component = () => ( 104 + // <details class="group -my-4 -m-6 mb-4"> 105 + // <summary class="untangled-language-bar"> 106 + // <div 107 + // class="untangled-language-segment" 108 + // title="Other 100%" 109 + // style={{ 110 + // width: "100%", 111 + // 'background-color': languageColor("Other"), 112 + // }} 113 + // /> 114 + // </summary> 115 + // </details> 116 + // ); 119 117 120 118 const RepoLanguageBar: Component<{ 121 119 languages: Array<{ name: string; percentage: number; color?: string }>;