[Tex/LaTex] How to remove indentation in footnote

footnotesindentation

On the first page, I put "corresponding author" in a footnote. However, there is unwanted indentation before * (see the picture below).

enter image description here

I tried \noindent but didn't work. MWE is at below. Thank you!

\documentclass[twocolumn, twoside]{article}

\usepackage{authblk}    
\usepackage{multicol}
\usepackage{fancyhdr}   

\begin{document}

\begin{multicols}{1} 
\title{\fontsize{24pt}{10pt}\selectfont\textbf{The Title Here\\}\vspace{1ex}} 

    \author[1,*]{Author One}
    \affil[1]{\small University of California;}     

\date{}

\end{multicols}

\twocolumn[ 
  \maketitle
  \thispagestyle{fancy} 
        \begin{abstract}
         {\fontfamily{pnc}\selectfont 

         \textbf{} Following the first case series of Hodgkin lymphomas  \\
}
    \end{abstract}
]

\renewcommand{\thefootnote}{*}
    \footnotetext{\noindent  Correspondence: John Doe, 1234 Main Street, City Name, CA 00000. Tel: 123-456-6666; Fax: 123-456-4545; Email: johndoe@thisu.edu}

\section{Introduction}
Although Pathology is as ancient as 17th century BC Egyptian medicine, Hematopathology can only be historically traced back to 1832 AD when Thomas 

\end{document}

Best Answer

cfr's solution clearly works. For people without much experience like myself, I found a simpler solution from stackoverflow and would like to share here:

Use footmisc package:

\usepackage[hang,flushmargin]{footmisc}
Related Question