atproto explorer
0
fork

Configure Feed

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

remove constellation host setting

Juliet a1894bd2 d11adc6c

+2 -16
+1 -15
src/components/settings.tsx
··· 101 101 </button> 102 102 </div> 103 103 <div class="mt-2 flex flex-col gap-1"> 104 - <div class="flex flex-col gap-0.5"> 105 - <label for="constellation" class="select-none font-semibold"> 106 - Backlinks host 107 - </label> 108 - <TextInput 109 - id="constellation" 110 - value={localStorage.constellationHost || "https://constellation.microcosm.blue"} 111 - onInput={(e) => { 112 - e.currentTarget.value.length ? 113 - (localStorage.constellationHost = e.currentTarget.value) 114 - : localStorage.removeItem("constellationHost"); 115 - }} 116 - /> 117 - </div> 118 - <div class="mt-2 flex flex-col gap-1"> 104 + <div class="flex flex-col gap-1"> 119 105 <div class="flex flex-col gap-0.5"> 120 106 <label for="plcDirectory" class="select-none font-semibold"> 121 107 PLC Directory
+1 -1
src/utils/api.ts
··· 125 125 cursor?: string, 126 126 limit?: number, 127 127 ) => { 128 - const url = new URL(localStorage.constellationHost || "https://constellation.microcosm.blue"); 128 + const url = new URL("https://constellation.microcosm.blue"); 129 129 url.pathname = endpoint; 130 130 url.searchParams.set("target", target); 131 131 if (collection) {