Use consistent naming

This commit is contained in:
2025-10-17 15:09:38 +02:00
parent 0ce55123bb
commit b2e582bd9c
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -2,10 +2,10 @@
from flask import Blueprint, render_template, current_app
from app.models.product import Product
landing_bp = Blueprint('landing', __name__)
bp = Blueprint('landing', __name__)
@landing_bp.route('/')
@bp.route('/')
def index():
"""Landing page showing all active products for feedback submission