Skip to content

Commit

Permalink
chore: fix UTM source on home page
Browse files Browse the repository at this point in the history
  • Loading branch information
janaka committed Sep 8, 2024
1 parent a0dff37 commit 690abd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/page_handlers/home.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Page: Home (no auth required)."""

import socket
import os

import streamlit as st
from utils.handlers import (
Expand Down Expand Up @@ -43,7 +43,7 @@
"""
)

hostname = socket.gethostname()
hostname = os.environ.get("DOCQ_SERVER_ADDRESS", "http://localhost")
st.subheader("Use Cases")
st.markdown(
f"""
Expand Down

0 comments on commit 690abd9

Please sign in to comment.