Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_sdk_framework
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Manos Chorianopoulos
2025-07-21 17:49:50 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6aaafc449ddba4c01bb1ffadeea3ddd0be4df66c
6aaafc44
1 parent
28402694
MyRewardsVC fixes
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
SwiftWarplyFramework/SwiftWarplyFramework/screens/MyRewardsViewController/MyRewardsViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/screens/MyRewardsViewController/MyRewardsViewController.swift
View file @
6aaafc4
...
...
@@ -214,10 +214,12 @@ extension MyRewardsViewController: UITableViewDelegate, UITableViewDataSource{
cell
.
configureCell
(
data
:
sectionModel
)
return
cell
case
.
profileHeader
,
.
profileQuestionnaire
,
.
profileCouponFilters
,
.
staticContent
:
// These will be implemented later when needed
case
.
profileHeader
,
.
profileQuestionnaire
,
.
profileCouponFilters
,
.
profileCoupon
,
.
staticContent
:
// These sections don't belong in MyRewardsViewController - return empty cell
// This should not happen in normal operation since MyRewardsViewController
// should only contain MyRewards-specific sections
let
cell
=
UITableViewCell
()
cell
.
textLabel
?
.
text
=
sectionModel
.
title
??
"Section"
cell
.
isHidden
=
true
return
cell
}
}
...
...
Please
register
or
login
to post a comment