Currently the previous friend loading method to load friends from local storage is being performed in sync. I think this will cause performance issues with app load time in the case that a user has accumulated a LARGE amount of previously added friends. We can nip that issue in the butt by implementing async loading for this process.
Make sure to make previous friends arrays binding so that they can update after the view that uses them is rendered. Or make sure that this wouldn't be an issue in the first place.
Currently the previous friend loading method to load friends from local storage is being performed in sync. I think this will cause performance issues with app load time in the case that a user has accumulated a LARGE amount of previously added friends. We can nip that issue in the butt by implementing async loading for this process.
Make sure to make previous friends arrays binding so that they can update after the view that uses them is rendered. Or make sure that this wouldn't be an issue in the first place.