diff --git a/app/main.py b/app/main.py
index 5af6819..44e2801 100644
--- a/app/main.py
+++ b/app/main.py
@@ -197,6 +197,7 @@ def get_flashed_messages_if_any():
s = ''
for message in messages:
s += '
'
+ s += '
Congratulations
'
s += f'{message}'
s += ''
return s
@@ -326,7 +327,7 @@ def familiar(username,word):
def deleteword(username,word):
user_freq_record = path_prefix + 'static/frequency/' + 'frequency_%s.pickle' % (username)
pickle_idea2.deleteRecord(user_freq_record,word)
- flash(f'Congratulations! {word} is no longer in your word list.')
+ flash(f'{word} is no longer in your word list.')
return redirect(url_for('userpage', username=username))
@app.route("/", methods=['GET', 'POST'])