Write a function that takes a list of strings and returns a new list with the strings sorted in ascending order based on the length of the strings. If two strings have the same length, maintain their relative order in the sorted list.
['apple', 'banana', 'kiwi', 'orange', 'pear']['kiwi', 'pear', 'apple', 'banana', 'orange']