Compare commits

...

2 commits

Author SHA1 Message Date
sakrecoer
35e7233853 stop deleting inexistant jsonl 2026-07-31 01:10:51 +02:00
sakrecoer
dce6b3b752 fix the width on mobile 2026-07-31 01:10:32 +02:00
2 changed files with 3 additions and 4 deletions

View file

@ -26,10 +26,7 @@ for kind in "${!KINDS[@]}"; do
# Fetch and convert to JSON # Fetch and convert to JSON
nak req -k "$kind" -a "$PUBKEY" "$RELAY" | jq -s '.' > "$DATA_DIR/$output.json" nak req -k "$kind" -a "$PUBKEY" "$RELAY" | jq -s '.' > "$DATA_DIR/$output.json"
# Remove any existing .jsonl file in the same directory
rm -f "$DATA_DIR/$(dirname "$output")"/*.jsonl
echo "Saved to $DATA_DIR/$output.json" echo "Saved to $DATA_DIR/$output.json"
done done

View file

@ -995,6 +995,7 @@ button {
.header-text { .header-text {
text-align: center; text-align: center;
max-width: calc(100vw - 32px);
} }
.profile-about { .profile-about {
@ -1006,6 +1007,7 @@ button {
text-align: center; text-align: center;
} }
.profile-links { .profile-links {
justify-content: center; justify-content: center;
} }